Changeset 59158 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Dec 16, 2015 3:44:59 PM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/sched-linux.cpp
r57358 r59158 325 325 { 326 326 rc = pthread_join(Thread, &pvRet); 327 } while ( errno== EINTR);327 } while (rc == EINTR); 328 328 if (rc) 329 329 return RTErrConvertFromErrno(rc); -
trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp
r57358 r59158 401 401 { 402 402 rc = pthread_join(Thread, &pvRet); 403 } while ( errno== EINTR);403 } while (rc == EINTR); 404 404 if (rc) 405 405 return RTErrConvertFromErrno(rc);
Note:
See TracChangeset
for help on using the changeset viewer.