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
in the process of fixing #7 and #9 i've discovered that rust std uses dbghelp.dll on windows which itself is single-thread library but std synchronizes access to it for multiple threads by using mutex. in case of relib this mutex wont help because every module (dynamic library) has its own std which has its own mutex for dbghelp.dll
The text was updated successfully, but these errors were encountered:
in the process of fixing #7 and #9 i've discovered that rust std uses dbghelp.dll on windows which itself is single-thread library but std synchronizes access to it for multiple threads by using mutex. in case of relib this mutex wont help because every module (dynamic library) has its own std which has its own mutex for dbghelp.dll
The text was updated successfully, but these errors were encountered: