Changeset 25724 in vbox for trunk/src/VBox/Runtime/r0drv/solaris
- Timestamp:
- Jan 11, 2010 2:45:34 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56467
- Location:
- trunk/src/VBox/Runtime/r0drv/solaris
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r25717 r25724 183 183 184 184 185 static int rtSemEventWait(RTSEMEVENT hEventSem, unsignedcMillies, bool fInterruptible)185 static int rtSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies, bool fInterruptible) 186 186 { 187 187 int rc; … … 270 270 271 271 272 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, unsignedcMillies)272 RTDECL(int) RTSemEventWait(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 273 273 { 274 274 return rtSemEventWait(hEventSem, cMillies, false /* not interruptible */); … … 276 276 277 277 278 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, unsignedcMillies)278 RTDECL(int) RTSemEventWaitNoResume(RTSEMEVENT hEventSem, RTMSINTERVAL cMillies) 279 279 { 280 280 return rtSemEventWait(hEventSem, cMillies, true /* interruptible */); -
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r25720 r25724 217 217 218 218 219 static int rtSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies, bool fInterruptible)219 static int rtSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies, bool fInterruptible) 220 220 { 221 221 int rc; … … 301 301 302 302 303 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)303 RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 304 304 { 305 305 return rtSemEventMultiWait(hEventMultiSem, cMillies, false /* not interruptible */); … … 307 307 308 308 309 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, unsignedcMillies)309 RTDECL(int) RTSemEventMultiWaitNoResume(RTSEMEVENTMULTI hEventMultiSem, RTMSINTERVAL cMillies) 310 310 { 311 311 return rtSemEventMultiWait(hEventMultiSem, cMillies, true /* interruptible */); -
trunk/src/VBox/Runtime/r0drv/solaris/vbi/thread-r0drv-solaris.c
r25183 r25724 50 50 51 51 52 RTDECL(int) RTThreadSleep( unsignedcMillies)52 RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies) 53 53 { 54 54 clock_t cTicks;
Note:
See TracChangeset
for help on using the changeset viewer.