- Timestamp:
- Aug 16, 2016 9:55:30 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r62570 r63530 294 294 PRTTHREADINT pThread = (PRTTHREADINT)pvArgs; 295 295 pthread_t Self = pthread_self(); 296 Assert((uintptr_t)Self == (RTNATIVETHREAD)Self && (uintptr_t)Self != NIL_RTNATIVETHREAD); 296 Assert((uintptr_t)Self != NIL_RTNATIVETHREAD); 297 Assert(Self == (pthread_t)(RTNATIVETHREAD)Self); 297 298 298 299 #if defined(RT_OS_LINUX)
Note:
See TracChangeset
for help on using the changeset viewer.