Changeset 35877 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Feb 7, 2011 2:56:24 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69883
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r35876 r35877 444 444 445 445 #elif defined(RT_OS_DARWIN) 446 thread_basic_info ThreadInfo; 447 mach_msg_type_number_t Count = sizeof(ThreadInfo) / sizeof(int); 448 kern_return_t krc; 449 450 krc = thread_info(mach_thread_self(), THREAD_BASIC_INFO, (thread_info_t)&ThreadInfo, &Count); 446 thread_basic_info ThreadInfo; 447 mach_msg_type_number_t Count = THREAD_BASIC_INFO_COUNT; 448 kern_return_t krc = thread_info(mach_thread_self(), THREAD_BASIC_INFO, (thread_info_t)&ThreadInfo, &Count); 451 449 AssertReturn(krc == KERN_SUCCESS, RTErrConvertFromDarwinKern(krc)); 452 450
Note:
See TracChangeset
for help on using the changeset viewer.