diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-01 16:04:05 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-01 16:04:05 +0100 |
| commit | d7f8625e63fe098d2476a5a1406cf1897b075daf (patch) | |
| tree | 160fece40ea99763316740b845b11055bc5e4029 /src | |
| parent | a8637ca5d63da07c4049e475fdf729841a599b1d (diff) | |
| download | box64-d7f8625e63fe098d2476a5a1406cf1897b075daf.tar.gz box64-d7f8625e63fe098d2476a5a1406cf1897b075daf.zip | |
Future custommem helper init'd and fini'd
Diffstat (limited to 'src')
| -rwxr-xr-x | src/box64context.c | 5 |
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(); |