Displaying 1 result from an estimated 1 matches for "shimdl".
Did you mean:
shim
2020 Feb 13
1
[nbdkit PATCH v3] vddk: Drive library loading from libdir parameter.
...;
+#include "shim.h"
#include "vddk-structs.h"
/* Enable extra disk info debugging with: -D vddk.diskinfo=1 */
@@ -71,7 +73,8 @@ int vddk_debug_extents;
#define VDDK_MAJOR 5
#define VDDK_MINOR 1
-static void *dl = NULL; /* dlopen handle */
+static void *shimdl = NULL; /* shim dlopen handle */
+static void *dl = NULL; /* vddk dlopen handle */
static int init_called = 0; /* was InitEx called */
static char *config = NULL; /* config */
@@ -153,6 +156,8 @@ vddk_unload (void)
}
if (dl)...