e4f63819a1
1. remove GKI(not use osi_free_and_reset) 2. modify mutex/semaphore to individual directory 3. set osi_malloc as malloc(previously use calloc) 4. change osi allocator debug osi_free 5. fix rebase of remove GKI
16 lines
237 B
C
16 lines
237 B
C
|
|
#ifndef _OSI_H_
|
|
#define _OSI_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define UNUSED_ATTR __attribute__((unused))
|
|
|
|
#define CONCAT(a, b) a##b
|
|
#define COMPILE_ASSERT(x)
|
|
|
|
int osi_init(void);
|
|
void osi_deinit(void);
|
|
|
|
#endif /*_OSI_H_*/
|