Changeset 25724 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Jan 11, 2010 2:45:34 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/linux
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r25717 r25724 138 138 * @param fInterruptible Whether it's an interruptible wait or not. 139 139 */ 140 static int rtSemEventWait(PRTSEMEVENTINTERNAL pThis, unsignedcMillies, bool fInterruptible)140 static int rtSemEventWait(PRTSEMEVENTINTERNAL pThis, RTMSINTERVAL cMillies, bool fInterruptible) 141 141 { 142 142 /* … … 193 193 194 194 195 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, unsignedcMillies)195 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 196 196 { 197 197 PRTSEMEVENTINTERNAL pThis = (PRTSEMEVENTINTERNAL)hEventSem; … … 206 206 207 207 208 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, unsignedcMillies)208 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 209 209 { 210 210 PRTSEMEVENTINTERNAL pThis = (PRTSEMEVENTINTERNAL)hEventSem; -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r25720 r25724 161 161 * @param fInterruptible Whether it's an interruptible wait or not. 162 162 */ 163 static int rtSemEventMultiWait(PRTSEMEVENTMULTIINTERNAL pThis, unsignedcMillies, bool fInterruptible)163 static int rtSemEventMultiWait(PRTSEMEVENTMULTIINTERNAL pThis, RTMSINTERVAL cMillies, bool fInterruptible) 164 164 { 165 165 /* … … 216 216 217 217 218 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)218 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 219 219 { 220 220 PRTSEMEVENTMULTIINTERNAL pThis = (PRTSEMEVENTMULTIINTERNAL)hEventMultiSem; … … 231 231 232 232 233 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)233 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 234 234 { 235 235 PRTSEMEVENTMULTIINTERNAL pThis = (PRTSEMEVENTMULTIINTERNAL)hEventMultiSem; -
trunk/src/VBox/Runtime/r0drv/linux/semmutex-r0drv-linux.c
r25721 r25724 120 120 121 121 #undef RTSemMutexRequest 122 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, unsignedcMillies)122 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 123 123 { 124 124 int rc = VINF_SUCCESS; -
trunk/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c
r22150 r25724 59 59 60 60 61 RTDECL(int) RTThreadSleep( unsignedcMillies)61 RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies) 62 62 { 63 63 long cJiffies = msecs_to_jiffies(cMillies);
Note:
See TracChangeset
for help on using the changeset viewer.