Home
last modified time | relevance | path

Searched refs:stackSize (Results 1 – 5 of 5) sorted by relevance

/TaskScheduler/Scheduler/Include/Platform/Posix/
H A DMTThread.h143 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 DMTFiber.h145 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 DMTFiberDefault.h120 void Create(size_t stackSize, TThreadEntryPoint entryPoint, void* userData) in Create() argument
126 fiber = ::CreateFiber( stackSize, FiberFuncInternal, this ); in Create()
H A DMTFiberOptimized.h133 void Create(size_t stackSize, TThreadEntryPoint entryPoint, void* userData) in Create() argument
145 stackDesc = Memory::AllocStack(stackSize); in Create()
H A DMTThread.h153 …void Start(size_t stackSize, TThreadEntryPoint entryPoint, void *userData, uint32 cpuCore = MT_CPU…
159 …thread = ::CreateThread( nullptr, stackSize, ThreadFuncInternal, this, MW_CREATE_SUSPENDED, nullpt…