Searched refs:stackSize (Results 1 – 5 of 5) sorted by relevance
| /TaskScheduler/Scheduler/Include/Platform/Posix/ |
| H A D | MTThread.h | 143 size_t stackSize; variable 201 : stackSize(0) in Thread() 213 return stackSize; in GetStackSize() 227 stackSize = stackDesc.GetStackSize(); 229 MT_ASSERT(stackSize >= PTHREAD_STACK_MIN, "Thread stack to small"); 235 err = pthread_attr_setstack(&threadAttr, stackDesc.stackBottom, stackSize); 299 stackSize = 0; in Join()
|
| H A D | MTFiber.h | 145 void Create(size_t stackSize, TThreadEntryPoint entryPoint, void *userData) in Create() argument 148 MT_ASSERT(stackSize >= PTHREAD_STACK_MIN, "Stack to small"); in Create() 157 stackDesc = Memory::AllocStack(stackSize); in Create()
|
| /TaskScheduler/Scheduler/Include/Platform/Windows/ |
| H A D | MTFiberDefault.h | 120 void Create(size_t stackSize, TThreadEntryPoint entryPoint, void* userData) in Create() argument 126 fiber = ::CreateFiber( stackSize, FiberFuncInternal, this ); in Create()
|
| H A D | MTFiberOptimized.h | 133 void Create(size_t stackSize, TThreadEntryPoint entryPoint, void* userData) in Create() argument 145 stackDesc = Memory::AllocStack(stackSize); in Create()
|
| H A D | MTThread.h | 153 …void Start(size_t stackSize, TThreadEntryPoint entryPoint, void *userData, uint32 cpuCore = MT_CPU… 159 …thread = ::CreateThread( nullptr, stackSize, ThreadFuncInternal, this, MW_CREATE_SUSPENDED, nullpt…
|