blob: 9850928c6c1b8d67c2df8fd2c7a04853dd9b459c [file] [log] [blame]
Davide Grohmann144b2d22022-05-31 15:24:02 +02001/*
Kristofer Jonsson3f5510f2023-02-08 14:23:00 +01002 * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
Davide Grohmann144b2d22022-05-31 15:24:02 +02003 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Licensed under the Apache License, Version 2.0 (the License); you may
7 * not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19#include "FreeRTOS.h"
20#include <cstddef>
21#include <new>
22
23void *operator new(size_t size) {
24 return pvPortMalloc(size);
25}
26
27void *operator new[](size_t size) {
28 return pvPortMalloc(size);
29}
30
Davide Grohmann244a9b82022-08-15 17:11:54 +020031void operator delete(void *ptr) noexcept {
Davide Grohmann144b2d22022-05-31 15:24:02 +020032 vPortFree(ptr);
33}
34
Davide Grohmann244a9b82022-08-15 17:11:54 +020035void operator delete(void *ptr, std::size_t) noexcept {
Davide Grohmann144b2d22022-05-31 15:24:02 +020036 vPortFree(ptr);
37}
38
Davide Grohmann244a9b82022-08-15 17:11:54 +020039void operator delete[](void *ptr) noexcept {
Davide Grohmann144b2d22022-05-31 15:24:02 +020040 vPortFree(ptr);
41}
42
Davide Grohmann244a9b82022-08-15 17:11:54 +020043void operator delete[](void *ptr, std::size_t) noexcept {
Davide Grohmann144b2d22022-05-31 15:24:02 +020044 vPortFree(ptr);
45}