Changeset 39443 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Nov 28, 2011 3:01:21 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75079
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c
r33358 r39443 58 58 59 59 60 RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies)60 static int rtR0ThreadLnxSleepCommon(RTMSINTERVAL cMillies) 61 61 { 62 62 long cJiffies = msecs_to_jiffies(cMillies); … … 67 67 return VERR_INTERRUPTED; 68 68 } 69 70 71 RTDECL(int) RTThreadSleep(RTMSINTERVAL cMillies) 72 { 73 return rtR0ThreadLnxSleepCommon(cMillies); 74 } 69 75 RT_EXPORT_SYMBOL(RTThreadSleep); 76 77 78 RTDECL(int) RTThreadSleepNoLog(RTMSINTERVAL cMillies) 79 { 80 return rtR0ThreadLnxSleepCommon(cMillies); 81 } 82 RT_EXPORT_SYMBOL(RTThreadSleepNoLog); 70 83 71 84
Note:
See TracChangeset
for help on using the changeset viewer.