Changeset 25724 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd
- Timestamp:
- Jan 11, 2010 2:45:34 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56467
- Location:
- trunk/src/VBox/Runtime/r0drv/freebsd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r25717 r25724 162 162 163 163 164 static int rtSemEventWait(RTSEMEVENT hEventSem, unsignedcMillies, bool fInterruptible)164 static int rtSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies, bool fInterruptible) 165 165 { 166 166 int rc; … … 283 283 284 284 285 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, unsignedcMillies)285 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 286 286 { 287 287 return rtSemEventWait(hEventSem, cMillies, false /* not interruptible */); … … 289 289 290 290 291 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, unsignedcMillies)291 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 292 292 { 293 293 return rtSemEventWait(hEventSem, cMillies, true /* interruptible */); -
trunk/src/VBox/Runtime/r0drv/freebsd/semeventmulti-r0drv-freebsd.c
r25720 r25724 177 177 178 178 179 static int rtSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies, bool fInterruptible)179 static int rtSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies, bool fInterruptible) 180 180 { 181 181 int rc; … … 293 293 294 294 295 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)295 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 296 296 { 297 297 return rtSemEventMultiWait(hEventMultiSem, cMillies, false /* not interruptible */); … … 299 299 300 300 301 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)301 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 302 302 { 303 303 return rtSemEventMultiWait(hEventMultiSem, cMillies, true /* interruptible */); -
trunk/src/VBox/Runtime/r0drv/freebsd/thread-r0drv-freebsd.c
r22151 r25724 49 49 50 50 51 RTDECL(int) RTThreadSleep( unsignedcMillies)51 RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies) 52 52 { 53 53 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.