Changeset 244 in vbox for trunk/src/VBox
- Timestamp:
- Jan 23, 2007 4:49:40 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17774
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/os2/thread-os2.cpp
r1 r244 206 206 } 207 207 208 209 RTR3DECL(void) RTThreadExit(void) 210 { 211 DosExit(EXIT_THREAD, 0); 212 } -
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r1 r244 258 258 } 259 259 260 261 RTR3DECL(void) RTThreadExit(void) 262 { 263 AssertMsgFailed(("Unimplemented\n")); 264 } -
trunk/src/VBox/Runtime/r3/win32/thread-win32.cpp
r1 r244 218 218 } 219 219 220 RTR3DECL(void) RTThreadExit(void) 221 { 222 ExitThread(0); 223 }
Note:
See TracChangeset
for help on using the changeset viewer.