Tells if the thread is busy, that is - used to run a script
| 88 | const std::deque<ScriptExecPosition> &GetCallStack() const { return _callstack; } |
| 89 | // Tells if the thread is busy, that is - used to run a script |
| 90 | bool IsBusy() const { return _inUse; } |
| 91 | const ScriptExecPosition &GetPosition() const { return _pos; } |
| 92 | size_t GetStackBegin() const { return _stackBeginOff; } |
| 93 | size_t GetStackDataBegin() const { return _stackDataBeginOff; } |
no outgoing calls
no test coverage detected