bond/include/kernel/ke/alloc.h

13 lines
180 B
C
Raw Normal View History

2018-03-24 00:58:24 +00:00
#ifndef KERNEL_KE_ALLOC_H
#define KERNEL_KE_ALLOC_H
2018-01-26 08:43:22 +00:00
2018-01-25 09:53:35 +00:00
#include "type.h"
2017-02-01 03:26:08 +00:00
2018-02-18 07:48:59 +00:00
void SXAPI ke_alloc_init(void);
2017-02-01 03:26:08 +00:00
2018-03-24 00:58:24 +00:00
void *SXAPI ke_alloc(uint32 size);
2017-02-01 03:26:08 +00:00
2018-02-18 07:48:59 +00:00
void SXAPI ke_free(void *ptr);
2017-02-01 03:26:08 +00:00
2018-03-24 00:58:24 +00:00
#endif