42c42,44
< Method(const char *name, ProcessFuncWrapper *func) : Process(name, func) {}
---
> Method(const char *name, ProcessFuncWrapper *func, bool internal=false) :
> Process(name, func, internal)
> {}
56,57c58,59
< Thread(const char *name, ProcessFuncWrapper *func) :
< Process(name, func), ctx(nullptr)
---
> Thread(const char *name, ProcessFuncWrapper *func, bool internal=false) :
> Process(name, func, internal), ctx(nullptr)
106c108,109
< CThread(const char *name, ProcessFuncWrapper *func) : Thread(name, func)
---
> CThread(const char *name, ProcessFuncWrapper *func, bool internal=false) :
> Thread(name, func, internal)