11 lines
264 B
C
11 lines
264 B
C
#ifndef __R_SEMAPHORE_H__
|
|
#define __R_SEMAPHORE_H__
|
|
|
|
#include "ridhaOs.h"
|
|
|
|
void ridhaOsSemaphoreInit(int32_t *semaphore, int32_t value);
|
|
void ridhaOsSemaphoreSet(int32_t * semaphore);
|
|
void ridhaOsSemaphoreWait(int32_t * semaphore);
|
|
|
|
|
|
#endif /* __R_SEMAPHORE_H__ */ |