Changeset 57405 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 18, 2015 9:03:48 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/tls-posix.cpp
r57358 r57405 58 58 { 59 59 pthread_key_t iTls = (pthread_key_t)NIL_RTTLS; 60 #if defined(__GNUC__) && defined(RT_ARCH_X86) 61 int rc = pthread_key_create(&iTls, (void (*)(void*))pfnDestructor); 62 #else 60 63 int rc = pthread_key_create(&iTls, pfnDestructor); 64 #endif 61 65 if (!rc) 62 66 {
Note:
See TracChangeset
for help on using the changeset viewer.