7#ifndef NRF_CLOUD_OS_H__
8#define NRF_CLOUD_OS_H__
15#include <zephyr/kernel.h>
23 void *(*malloc_fn)(
size_t size);
24 void *(*calloc_fn)(
size_t count,
size_t size);
void nrf_cloud_os_mem_hooks_init(struct nrf_cloud_os_mem_hooks *hooks)
Initialize the used OS memory hooks. As a default, nRF Cloud library uses OS kernel heap memory (in o...
void(* free_fn)(void *ptr)
Definition nrf_cloud_os.h:25
Custom OS memory hooks for nRF Cloud library.
Definition nrf_cloud_os.h:22