1 /* 2 * Copyright (C) 2019-2020 AlibabaGroup Holding Limited 3 */ 4 5 /****************************************************************************** 6 * @file ipc_mem.h 7 * @brief header file for the ipc mem 8 * @version V1.0 9 * @date 07. Aug 2019 10 * @vendor csky 11 * @chip pangu 12 ******************************************************************************/ 13 #ifndef _IPC_MEM_H_ 14 #define _IPC_MEM_H_ 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif 19 20 void drv_ipc_mem_init(void); 21 void *drv_ipc_mem_alloc(int *len); 22 void drv_ipc_mem_free(void *p); 23 int drv_ipc_mem_use_cache(void); 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif /* _IPC_MEM_H_ */ 30