You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SetThreadDescription wasn't introduced until Windows 10, 1607. It's currently being used to name threads without a check to determine if it's actually available. Instead, it should be fetched dynamically with a fallback to the older approach that only worked under debuggers.
I suggest a static initializer that does something akin to:
SetThreadDescription
wasn't introduced until Windows 10, 1607. It's currently being used to name threads without a check to determine if it's actually available. Instead, it should be fetched dynamically with a fallback to the older approach that only worked under debuggers.I suggest a static initializer that does something akin to:
Here's the fallback, for Windows 7.
The text was updated successfully, but these errors were encountered: