| 1116 | } |
| 1117 | |
| 1118 | THREAD_HANDLE startThread(THREAD_FUNC_RETURN (*func)(void*), void* arg, int stackSize, const char* name) override { |
| 1119 | SimThreadArgs* simArgs = new SimThreadArgs(func, arg); |
| 1120 | return ::startThread(simStartThread, simArgs, stackSize, name); |
| 1121 | } |
| 1122 | |
| 1123 | void getDiskBytes(std::string const& directory, int64_t& free, int64_t& total) override { |
| 1124 | ProcessInfo* proc = getCurrentProcess(); |
no outgoing calls