Changeset 54358 in vbox for trunk/src/VBox/Runtime/r0drv/haiku
- Timestamp:
- Feb 22, 2015 11:29:25 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98447
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/haiku/thread2-r0drv-haiku.c
r43403 r54358 41 41 42 42 43 intrtThreadNativeInit(void)43 DECLHIDDEN(int) rtThreadNativeInit(void) 44 44 { 45 45 /* No TLS in Ring-0. :-/ */ … … 54 54 55 55 56 intrtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType)56 DECLHIDDEN(int) rtThreadNativeSetPriority(PRTTHREADINT pThread, RTTHREADTYPE enmType) 57 57 { 58 58 int32 iPriority; … … 82 82 83 83 84 intrtThreadNativeAdopt(PRTTHREADINT pThread)84 DECLHIDDEN(int) rtThreadNativeAdopt(PRTTHREADINT pThread) 85 85 { 86 86 return VERR_NOT_IMPLEMENTED; … … 88 88 89 89 90 void rtThreadNativeDestroy(PRTTHREADINT pThread) 90 DECLHIDDEN(void) rtThreadNativeWaitKludge(PRTTHREADINT pThread) 91 { 92 /** @todo fix RTThreadWait/RTR0Term race on freebsd. */ 93 RTThreadSleep(1); 94 } 95 96 97 DECLHIDDEN(void) rtThreadNativeDestroy(PRTTHREADINT pThread) 91 98 { 92 99 NOREF(pThread); … … 115 122 116 123 117 intrtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread)124 DECLHIDDEN(int) rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread) 118 125 { 119 126 thread_id NativeThread;
Note:
See TracChangeset
for help on using the changeset viewer.