blob: c7fdba6296d3e6d1fc3bb007ccd86aee2f4b904e [file] [log] [blame]
Davide Grohmann144b2d22022-05-31 15:24:02 +02001/*
2 * Copyright (c) 2022 Arm Limited.
3 *
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
31void operator delete(void *ptr) {
32 vPortFree(ptr);
33}
34
35void operator delete(void *ptr, std::size_t) {
36 vPortFree(ptr);
37}
38
39void operator delete[](void *ptr) {
40 vPortFree(ptr);
41}
42
43void operator delete[](void *ptr, std::size_t) {
44 vPortFree(ptr);
45}