| /utopia/UTPA2-700.0.x/modules/msos/msos/optee/ |
| H A D | MsOS_optee.c | 862 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 864 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 870 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 873 if (s32MutexId >= MSOS_MUTEX_MAX) in MsOS_DeleteMutex() 877 MS_ASSERT(_MsOS_Mutex_Info[s32MutexId].bUsed); in MsOS_DeleteMutex() 878 mutex_destroy(&_MsOS_Mutex_Info[s32MutexId].stMutex); in MsOS_DeleteMutex() 879 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 880 memset(_MsOS_Mutex_Info[s32MutexId].u8Name,0x00,sizeof(_MsOS_Mutex_Info[s32MutexId].u8Name)); in MsOS_DeleteMutex() 893 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument 898 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_ObtainMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux/ |
| H A D | MsOS_linux.c | 1729 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 1731 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 1737 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 1741 if( (_MsOS_Mutex_Info[s32MutexId].bUsed == FALSE)) in MsOS_DeleteMutex() 1743 MSOS_ERROR("MUTEX WITH MUTEX_ID: %td NOT EXIST\n", (ptrdiff_t)s32MutexId); in MsOS_DeleteMutex() 1750 MS_ASSERT(_MsOS_Mutex_Info[s32MutexId].bUsed); in MsOS_DeleteMutex() 1753 if(_MsOS_Mutex_Info[s32MutexId].bShared) in MsOS_DeleteMutex() 1754 MsOS_DeleteNamedMutexbyIndex((_MsOS_Mutex_Info[s32MutexId].msos_mutex.u32Index)); in MsOS_DeleteMutex() 1756 PTH_RET_CHK(pthread_mutex_destroy(&_MsOS_Mutex_Info[s32MutexId].msos_mutex.stMutex)); in MsOS_DeleteMutex() 1758 PTH_RET_CHK(pthread_mutex_destroy(&_MsOS_Mutex_Info[s32MutexId].stMutex)); in MsOS_DeleteMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/ |
| H A D | MsOS_nuttx.c | 901 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 904 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 910 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 914 if( (_MsOS_Mutex_Info[s32MutexId].bUsed == FALSE)) in MsOS_DeleteMutex() 916 MSOS_PRINT("MUTEX WITH MUTEX_ID:0x%lx NOT EXIST\n",s32MutexId ); in MsOS_DeleteMutex() 923 MS_ASSERT(_MsOS_Mutex_Info[s32MutexId].bUsed); in MsOS_DeleteMutex() 924 pthread_mutex_destroy(&_MsOS_Mutex_Info[s32MutexId].stMutex); in MsOS_DeleteMutex() 925 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 926 memset(_MsOS_Mutex_Info[s32MutexId].u8Name,0x00,sizeof(_MsOS_Mutex_Info[s32MutexId].u8Name)); in MsOS_DeleteMutex() 940 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/ |
| H A D | MsOS_linux_kernel.c | 1242 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 1244 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 1250 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 1256 if (!_MsOS_Mutex_Info[s32MutexId].bUsed) in MsOS_DeleteMutex() 1268 if (TRUE == mutex_is_locked(&_MsOS_Mutex_Info[s32MutexId].stMutex)) in MsOS_DeleteMutex() 1275 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 1276 _MsOS_Mutex_Info[s32MutexId].u8Name[0] = '\0'; in MsOS_DeleteMutex() 1290 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument 1294 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_ObtainMutex() 1300 s32MutexId &= MSOS_ID_MASK; in MsOS_ObtainMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/ |
| H A D | MsOS_linux_kernel.c | 1218 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 1220 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 1226 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 1230 MS_ASSERT(_MsOS_Mutex_Info[s32MutexId].bUsed); in MsOS_DeleteMutex() 1231 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 1232 _MsOS_Mutex_Info[s32MutexId].u8Name[0] = '\0'; in MsOS_DeleteMutex() 1246 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument 1250 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_ObtainMutex() 1256 s32MutexId &= MSOS_ID_MASK; in MsOS_ObtainMutex() 1261 spin_lock(&(_MsOS_Mutex_Info[s32MutexId].stMutex)); in MsOS_ObtainMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/ecos/ |
| H A D | MsOS_ecos.c | 1443 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 1445 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_DeleteMutex() 1451 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 1454 cyg_mutex_destroy(&_MsOS_Mutex_Info[s32MutexId].stMutex); in MsOS_DeleteMutex() 1457 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 1470 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument 1474 if ( (s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX ) in MsOS_ObtainMutex() 1480 s32MutexId &= MSOS_ID_MASK; in MsOS_ObtainMutex() 1489 cyg_mutex_lock(&_MsOS_Mutex_Info[s32MutexId].stMutex); in MsOS_ObtainMutex() 1494 if ( cyg_mutex_trylock(&_MsOS_Mutex_Info[s32MutexId].stMutex) ) in MsOS_ObtainMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/mvop/drv/mvop/ |
| H A D | osalMVOP.c | 33 inline MS_BOOL OSAL_MVOP_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_MVOP_MutexObtain() argument 35 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_MVOP_MutexObtain() 38 inline MS_BOOL OSAL_MVOP_MutexRelease(MS_S32 s32MutexId) in OSAL_MVOP_MutexRelease() argument 40 return MsOS_ReleaseMutex(s32MutexId); in OSAL_MVOP_MutexRelease() 43 inline MS_BOOL OSAL_MVOP_MutexDelete(MS_S32 s32MutexId) in OSAL_MVOP_MutexDelete() argument 45 return MsOS_DeleteMutex(s32MutexId); in OSAL_MVOP_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v1/drv/rvd/ |
| H A D | osalRVD.c | 110 inline MS_BOOL OSAL_RVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_RVD_MutexObtain() argument 112 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_RVD_MutexObtain() 115 inline MS_BOOL OSAL_RVD_MutexRelease(MS_S32 s32MutexId) in OSAL_RVD_MutexRelease() argument 117 return MsOS_ReleaseMutex(s32MutexId); in OSAL_RVD_MutexRelease() 120 inline MS_BOOL OSAL_RVD_MutexDelete(MS_S32 s32MutexId) in OSAL_RVD_MutexDelete() argument 122 return MsOS_DeleteMutex(s32MutexId); in OSAL_RVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v1/drv/hvd/ |
| H A D | osalHVD.c | 110 inline MS_BOOL OSAL_HVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_HVD_MutexObtain() argument 112 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_HVD_MutexObtain() 115 inline MS_BOOL OSAL_HVD_MutexRelease(MS_S32 s32MutexId) in OSAL_HVD_MutexRelease() argument 117 return MsOS_ReleaseMutex(s32MutexId); in OSAL_HVD_MutexRelease() 120 inline MS_BOOL OSAL_HVD_MutexDelete(MS_S32 s32MutexId) in OSAL_HVD_MutexDelete() argument 122 return MsOS_DeleteMutex(s32MutexId); in OSAL_HVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/ucos/ |
| H A D | MsOS_ucos.c | 1404 MS_BOOL MsOS_DeleteMutex (MS_S32 s32MutexId) in MsOS_DeleteMutex() argument 1411 if ((s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX) in MsOS_DeleteMutex() 1417 s32MutexId &= MSOS_ID_MASK; in MsOS_DeleteMutex() 1420 OSSemDel(_MsOS_Mutex_Info[s32MutexId].stMutex, OS_DEL_ALWAYS, &u8Err); in MsOS_DeleteMutex() 1424 _MsOS_Mutex_Info[s32MutexId].bUsed = FALSE; in MsOS_DeleteMutex() 1440 MS_BOOL MsOS_ObtainMutex (MS_S32 s32MutexId, MS_U32 u32WaitMs) in MsOS_ObtainMutex() argument 1445 if ((s32MutexId & MSOS_ID_PREFIX_MASK) != MSOS_ID_PREFIX) in MsOS_ObtainMutex() 1451 s32MutexId &= MSOS_ID_MASK; in MsOS_ObtainMutex() 1458 OSSemPend(_MsOS_Mutex_Info[s32MutexId].stMutex, 0, &u8Err); in MsOS_ObtainMutex() 1470 if (OSSemAccept(_MsOS_Mutex_Info[s32MutexId].stMutex)) in MsOS_ObtainMutex() [all …]
|
| /utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/ |
| H A D | osalGPD.c | 161 inline MS_BOOL OSAL_GPD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_GPD_MutexObtain() argument 163 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_GPD_MutexObtain() 166 inline MS_BOOL OSAL_GPD_MutexRelease(MS_S32 s32MutexId) in OSAL_GPD_MutexRelease() argument 168 return MsOS_ReleaseMutex(s32MutexId); in OSAL_GPD_MutexRelease() 171 inline MS_BOOL OSAL_GPD_MutexDelete(MS_S32 s32MutexId) in OSAL_GPD_MutexDelete() argument 173 return MsOS_DeleteMutex(s32MutexId); in OSAL_GPD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/njpd/drv/njpd_ex/ |
| H A D | osalJPD.c | 168 inline MS_BOOL OSAL_JPD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_JPD_MutexObtain() argument 170 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_JPD_MutexObtain() 173 inline MS_BOOL OSAL_JPD_MutexRelease(MS_S32 s32MutexId) in OSAL_JPD_MutexRelease() argument 175 return MsOS_ReleaseMutex(s32MutexId); in OSAL_JPD_MutexRelease() 178 inline MS_BOOL OSAL_JPD_MutexDelete(MS_S32 s32MutexId) in OSAL_JPD_MutexDelete() argument 180 return MsOS_DeleteMutex(s32MutexId); in OSAL_JPD_MutexDelete()
|
| H A D | osalNJPD.c | 166 inline MS_BOOL OSAL_NJPD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_NJPD_MutexObtain() argument 168 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_NJPD_MutexObtain() 171 inline MS_BOOL OSAL_NJPD_MutexRelease(MS_S32 s32MutexId) in OSAL_NJPD_MutexRelease() argument 173 return MsOS_ReleaseMutex(s32MutexId); in OSAL_NJPD_MutexRelease() 176 inline MS_BOOL OSAL_NJPD_MutexDelete(MS_S32 s32MutexId) in OSAL_NJPD_MutexDelete() argument 178 return MsOS_DeleteMutex(s32MutexId); in OSAL_NJPD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/ojpd_vdec_v1/drv/jpd/ |
| H A D | osalJPD.c | 166 inline MS_BOOL OSAL_JPD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_JPD_MutexObtain() argument 168 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_JPD_MutexObtain() 171 inline MS_BOOL OSAL_JPD_MutexRelease(MS_S32 s32MutexId) in OSAL_JPD_MutexRelease() argument 173 return MsOS_ReleaseMutex(s32MutexId); in OSAL_JPD_MutexRelease() 176 inline MS_BOOL OSAL_JPD_MutexDelete(MS_S32 s32MutexId) in OSAL_JPD_MutexDelete() argument 178 return MsOS_DeleteMutex(s32MutexId); in OSAL_JPD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/ojpd_vdec_v2/drv/jpd_ex/ |
| H A D | osalJPD.c | 166 inline MS_BOOL OSAL_JPD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_JPD_MutexObtain() argument 168 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_JPD_MutexObtain() 171 inline MS_BOOL OSAL_JPD_MutexRelease(MS_S32 s32MutexId) in OSAL_JPD_MutexRelease() argument 173 return MsOS_ReleaseMutex(s32MutexId); in OSAL_JPD_MutexRelease() 176 inline MS_BOOL OSAL_JPD_MutexDelete(MS_S32 s32MutexId) in OSAL_JPD_MutexDelete() argument 178 return MsOS_DeleteMutex(s32MutexId); in OSAL_JPD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_lite/drv/hvd_lite/ |
| H A D | osalHVD_EX.c | 115 inline MS_BOOL OSAL_HVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_HVD_MutexObtain() argument 117 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_HVD_MutexObtain() 120 inline MS_BOOL OSAL_HVD_MutexRelease(MS_S32 s32MutexId) in OSAL_HVD_MutexRelease() argument 122 return MsOS_ReleaseMutex(s32MutexId); in OSAL_HVD_MutexRelease() 125 inline MS_BOOL OSAL_HVD_MutexDelete(MS_S32 s32MutexId) in OSAL_HVD_MutexDelete() argument 127 return MsOS_DeleteMutex(s32MutexId); in OSAL_HVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v1/drv/mvd/ |
| H A D | osalMVD.c | 113 inline MS_BOOL OSAL_MVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_MVD_MutexObtain() argument 115 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_MVD_MutexObtain() 118 inline MS_BOOL OSAL_MVD_MutexRelease(MS_S32 s32MutexId) in OSAL_MVD_MutexRelease() argument 120 return MsOS_ReleaseMutex(s32MutexId); in OSAL_MVD_MutexRelease() 123 inline MS_BOOL OSAL_MVD_MutexDelete(MS_S32 s32MutexId) in OSAL_MVD_MutexDelete() argument 125 return MsOS_DeleteMutex(s32MutexId); in OSAL_MVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v2/drv/mvd_ex/ |
| H A D | osalMVD_EX.c | 113 inline MS_BOOL OSAL_MVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_MVD_MutexObtain() argument 115 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_MVD_MutexObtain() 118 inline MS_BOOL OSAL_MVD_MutexRelease(MS_S32 s32MutexId) in OSAL_MVD_MutexRelease() argument 120 return MsOS_ReleaseMutex(s32MutexId); in OSAL_MVD_MutexRelease() 123 inline MS_BOOL OSAL_MVD_MutexDelete(MS_S32 s32MutexId) in OSAL_MVD_MutexDelete() argument 125 return MsOS_DeleteMutex(s32MutexId); in OSAL_MVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v3/drv/mvd_v3/ |
| H A D | osalMVD_EX.c | 113 inline MS_BOOL OSAL_MVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_MVD_MutexObtain() argument 115 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_MVD_MutexObtain() 118 inline MS_BOOL OSAL_MVD_MutexRelease(MS_S32 s32MutexId) in OSAL_MVD_MutexRelease() argument 120 return MsOS_ReleaseMutex(s32MutexId); in OSAL_MVD_MutexRelease() 123 inline MS_BOOL OSAL_MVD_MutexDelete(MS_S32 s32MutexId) in OSAL_MVD_MutexDelete() argument 125 return MsOS_DeleteMutex(s32MutexId); in OSAL_MVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v2/drv/hvd_ex/ |
| H A D | osalHVD_EX.c | 115 inline MS_BOOL OSAL_HVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_HVD_MutexObtain() argument 117 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_HVD_MutexObtain() 120 inline MS_BOOL OSAL_HVD_MutexRelease(MS_S32 s32MutexId) in OSAL_HVD_MutexRelease() argument 122 return MsOS_ReleaseMutex(s32MutexId); in OSAL_HVD_MutexRelease() 125 inline MS_BOOL OSAL_HVD_MutexDelete(MS_S32 s32MutexId) in OSAL_HVD_MutexDelete() argument 127 return MsOS_DeleteMutex(s32MutexId); in OSAL_HVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_lite/drv/mvd_lite/ |
| H A D | osalMVD_EX.c | 113 inline MS_BOOL OSAL_MVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_MVD_MutexObtain() argument 115 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_MVD_MutexObtain() 118 inline MS_BOOL OSAL_MVD_MutexRelease(MS_S32 s32MutexId) in OSAL_MVD_MutexRelease() argument 120 return MsOS_ReleaseMutex(s32MutexId); in OSAL_MVD_MutexRelease() 123 inline MS_BOOL OSAL_MVD_MutexDelete(MS_S32 s32MutexId) in OSAL_MVD_MutexDelete() argument 125 return MsOS_DeleteMutex(s32MutexId); in OSAL_MVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/vdec_v3/drv/hvd_v3/ |
| H A D | osalHVD_EX.c | 115 inline MS_BOOL OSAL_HVD_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_HVD_MutexObtain() argument 117 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_HVD_MutexObtain() 120 inline MS_BOOL OSAL_HVD_MutexRelease(MS_S32 s32MutexId) in OSAL_HVD_MutexRelease() argument 122 return MsOS_ReleaseMutex(s32MutexId); in OSAL_HVD_MutexRelease() 125 inline MS_BOOL OSAL_HVD_MutexDelete(MS_S32 s32MutexId) in OSAL_HVD_MutexDelete() argument 127 return MsOS_DeleteMutex(s32MutexId); in OSAL_HVD_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/dmx/drv/tsp4/ |
| H A D | tsp2_msos.c | 155 MS_BOOL TSP_OS_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in TSP_OS_MutexObtain() argument 157 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in TSP_OS_MutexObtain() 161 MS_BOOL TSP_OS_MutexRelease(MS_S32 s32MutexId) in TSP_OS_MutexRelease() argument 163 return MsOS_ReleaseMutex(s32MutexId); in TSP_OS_MutexRelease() 167 void TSP_OS_MutexDelete(MS_S32 s32MutexId) in TSP_OS_MutexDelete() argument 169 MsOS_DeleteMutex(s32MutexId); in TSP_OS_MutexDelete()
|
| /utopia/UTPA2-700.0.x/modules/dmx/drv/tsp3/ |
| H A D | osalTSP_ecos.c | 118 inline MS_BOOL OSAL_TSP_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_TSP_MutexObtain() argument 120 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_TSP_MutexObtain() 123 inline MS_BOOL OSAL_TSP_MutexRelease(MS_S32 s32MutexId) in OSAL_TSP_MutexRelease() argument 125 return MsOS_ReleaseMutex(s32MutexId); in OSAL_TSP_MutexRelease()
|
| /utopia/UTPA2-700.0.x/modules/dmx/drv/tsp/ |
| H A D | osalTSP_ecos.c | 118 inline MS_BOOL OSAL_TSP_MutexObtain(MS_S32 s32MutexId, MS_U32 u32Timeout) in OSAL_TSP_MutexObtain() argument 120 return MsOS_ObtainMutex(s32MutexId, u32Timeout); in OSAL_TSP_MutexObtain() 123 inline MS_BOOL OSAL_TSP_MutexRelease(MS_S32 s32MutexId) in OSAL_TSP_MutexRelease() argument 125 return MsOS_ReleaseMutex(s32MutexId); in OSAL_TSP_MutexRelease()
|