about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-01 16:04:05 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-01 16:04:05 +0100
commitd7f8625e63fe098d2476a5a1406cf1897b075daf (patch)
tree160fece40ea99763316740b845b11055bc5e4029 /src
parenta8637ca5d63da07c4049e475fdf729841a599b1d (diff)
downloadbox64-d7f8625e63fe098d2476a5a1406cf1897b075daf.tar.gz
box64-d7f8625e63fe098d2476a5a1406cf1897b075daf.zip
Future custommem helper init'd and fini'd
Diffstat (limited to 'src')
-rwxr-xr-xsrc/box64context.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/box64context.c b/src/box64context.c
index 84362565..e1741f6c 100755
--- a/src/box64context.c
+++ b/src/box64context.c
@@ -9,6 +9,7 @@
 #include "box64context.h"
 #include "debug.h"
 #include "elfloader.h"
+#include "custommem.h"
 
 
 EXPORTDYN
@@ -32,7 +33,7 @@ void finiAllHelpers(box64context_t* context)
     //fini_pthread_helper(context);
     //fini_signal_helper();
     //cleanAlternate();
-    //fini_custommem_helper(context);
+    fini_custommem_helper(context);
     finied = 1;
 }
 
@@ -72,7 +73,7 @@ box64context_t *NewBox64Context(int argc)
     context->deferedInit = 1;
     context->sel_serial = 1;
 
-    //init_custommem_helper(context);
+    init_custommem_helper(context);
 
     context->box64lib = dlopen(NULL, RTLD_NOW|RTLD_GLOBAL);
     //context->dlprivate = NewDLPrivate();