Changeset 96809 in vbox
- Timestamp:
- Sep 21, 2022 11:07:22 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r96407 r96809 335 335 rc = rtThreadAdopt(enmType, fFlags, 0, pszName); 336 336 Thread = RTThreadSelf(); 337 Log(("RTThreadAdopt: %RTthrd %RTnthrd '%s' enmType=%d fFlags=%#x rc=%Rrc\n", 338 Thread, RTThreadNativeSelf(), pszName, enmType, fFlags, rc)); 337 338 /* Don't too early during init, as rtLogLock may end up here and cause endless recursion. */ 339 if (rc != VERR_FAILED_TO_SET_SELF_TLS) 340 Log(("RTThreadAdopt: %RTthrd %RTnthrd '%s' enmType=%d fFlags=%#x rc=%Rrc\n", 341 Thread, RTThreadNativeSelf(), pszName, enmType, fFlags, rc)); 339 342 } 340 343 else
Note:
See TracChangeset
for help on using the changeset viewer.