MCPcopy Create free account
hub / github.com/WheretIB/nullc / nullcGetCurrentExecutor

Function nullcGetCurrentExecutor

NULLC/nullc.cpp:963–977  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

961}
962
963unsigned int nullcGetCurrentExecutor(void **exec)
964{
965 using namespace NULLC;
966
967#ifdef NULLC_BUILD_X86_JIT
968 if(exec)
969 *exec = (currExec == NULLC_VM ? (void*)executor : (void*)executorX86);
970#elif !defined(NULLC_NO_EXECUTOR)
971 if(exec)
972 *exec = executor;
973#else
974 *exec = NULL;
975#endif
976 return currExec;
977}
978
979const void* nullcGetModule(const char* path)
980{

Callers 5

FillFunctionPointerInfoFunction · 0.85
MarkUsedBlocksFunction · 0.85
nullcSetFunctionFunction · 0.85
OverrideFunctionFunction · 0.85
OverrideFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected