sdk-hwV1.3/external/eyesee-mpp/framework/sun8iw21/include/utils/OSAL_Mutex.h

19 lines
291 B
C
Raw Normal View History

2024-05-07 10:09:20 +00:00
#ifndef __OSAL_MUTEX__
#define __OSAL_MUTEX__
#ifdef __cplusplus
extern "C" {
#endif
int OSAL_MutexCreate(void **mutexHandle);
int OSAL_MutexTerminate(void *mutexHandle);
int OSAL_MutexLock(void *mutexHandle);
int OSAL_MutexUnlock(void *mutexHandle);
#ifdef __cplusplus
}
#endif
#endif