Searched refs:_MsOS_Timer_Mutex (Results 1 – 5 of 5) sorted by relevance
| /utopia/UTPA2-700.0.x/modules/msos/msos/ucos/ |
| H A D | MsOS_ucos.c | 318 static OS_EVENT* _MsOS_Timer_Mutex = NULL; variable 328 static OS_EVENT* _MsOS_Timer_Mutex; variable 482 _MsOS_Timer_Mutex = OSSemCreate(1); in MsOS_Init() 2187 OSSemPend(_MsOS_Timer_Mutex, 0, &u8Err); in TimerTask() 2221 OSSemPost(_MsOS_Timer_Mutex); in TimerTask() 2249 OSSemPend(_MsOS_Timer_Mutex, 0, &u8Err); in MsOS_CreateTimer() 2313 OSSemPost(_MsOS_Timer_Mutex); in MsOS_CreateTimer() 2335 OSSemPend(_MsOS_Timer_Mutex, 0, &u8Err); in MsOS_DeleteTimer() 2342 OSSemPost(_MsOS_Timer_Mutex); in MsOS_DeleteTimer() 2370 OSSemPend(_MsOS_Timer_Mutex, 0, &u8Err); in MsOS_StartTimer() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/ecos/ |
| H A D | MsOS_ecos.c | 320 static cyg_mutex_t _MsOS_Timer_Mutex; variable 464 cyg_mutex_init(&_MsOS_Timer_Mutex); in MsOS_Init() 2046 cyg_mutex_lock( &_MsOS_Timer_Mutex); in MsOS_CreateTimer() 2058 cyg_mutex_unlock( &_MsOS_Timer_Mutex); in MsOS_CreateTimer() 2106 cyg_mutex_lock( &_MsOS_Timer_Mutex); in MsOS_DeleteTimer() 2108 cyg_mutex_unlock(&_MsOS_Timer_Mutex); in MsOS_DeleteTimer()
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/ |
| H A D | MsOS_linux_kernel.c | 419 static DEFINE_SPINLOCK(_MsOS_Timer_Mutex); 420 #define TIMER_MUTEX_LOCK() spin_lock(&_MsOS_Timer_Mutex) 421 #define TIMER_MUTEX_UNLOCK() spin_unlock(&_MsOS_Timer_Mutex) 527 spin_lock_init(&_MsOS_Timer_Mutex); in MsOS_Init()
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux/ |
| H A D | MsOS_linux.c | 469 static pthread_mutex_t _MsOS_Timer_Mutex; variable 683 PTH_RET_CHK(pthread_mutex_init(&_MsOS_Timer_Mutex, &_MsOS_Mutex_Attr)); in MsOS_Init() 2528 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Timer_Mutex)); in MsOS_CreateTimer() 2540 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Timer_Mutex)); in MsOS_CreateTimer()
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/ |
| H A D | MsOS_linux_kernel.c | 362 static DEFINE_SPINLOCK(_MsOS_Timer_Mutex); 363 #define TIMER_MUTEX_LOCK(flags) spin_lock_irqsave(&_MsOS_Timer_Mutex, flags) 364 #define TIMER_MUTEX_UNLOCK(flags) spin_unlock_irqrestore(&_MsOS_Timer_Mutex, flags)
|