Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
mctp_memory.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 */
7
12
13#ifndef ZEPHYR_MCTP_MEMORY_H_
14#define ZEPHYR_MCTP_MEMORY_H_
15
27void *mctp_heap_alloc(size_t bytes);
28
38void mctp_heap_free(void *ptr);
39
40#endif /* ZEPHYR_MCTP_MEMORY_H_ */
void * mctp_heap_alloc(size_t bytes)
Allocate memory from the MCTP heap.
void mctp_heap_free(void *ptr)
Free memory allocated from the MCTP heap.