lib handle needs to be used from other threads omg

This commit is contained in:
Adam D. Ruppe 2021-10-10 13:34:14 -04:00
parent be2a7a0b1b
commit 613bb65cd1
1 changed files with 2 additions and 2 deletions

View File

@ -20100,8 +20100,8 @@ private const(char)[] staticForeachReplacement(Iface)() pure {
private mixin template DynamicLoad(Iface, string library, int majorVersion, alias success) {
mixin(staticForeachReplacement!Iface);
private void* libHandle;
private bool attempted;
private __gshared void* libHandle;
private __gshared bool attempted;
void loadDynamicLibrary() @nogc {
(cast(void function() @nogc) &loadDynamicLibraryForReal)();