Home
last modified time | relevance | path

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

/TaskScheduler/Scheduler/Include/
H A DMTAppInterop.h56 void* stackBottom; member
64 : stackBottom(nullptr) in StackDesc()
73 return (char*)stackTop - (char*)stackBottom; in GetStackSize()
/TaskScheduler/Scheduler/Include/Platform/Windows/
H A DMTFiberOptimized.h124 …stackDesc.stackBottom = (void*)ReadTeb( MW_STACK_STACK_LIMIT_OFFSET /*FIELD_OFFSET(NT_TIB, StackLi… in CreateFromCurrentThreadAndRun()
209 …MW_STACK_STACK_LIMIT_OFFSET/*FIELD_OFFSET(NT_TIB, StackLimit)*/, (uint64)to.stackDesc.stackBottom); in SwitchTo()
216 …STACK_STACK_LIMIT_OFFSET /*FIELD_OFFSET(NT_TIB, StackLimit)*/, (uint64)from.stackDesc.stackBottom); in SwitchTo()
/TaskScheduler/Scheduler/Source/
H A DMTDefaultAppInterop.cpp120 desc.stackBottom = desc.stackMemory + pageSize; in AllocStack()
147 desc.stackBottom = desc.stackMemory + pageSize; in AllocStack()
/TaskScheduler/Scheduler/Include/Platform/Posix/
H A DMTThread.h208 return stackDesc.stackBottom; in GetStackBottom()
235 err = pthread_attr_setstack(&threadAttr, stackDesc.stackBottom, stackSize);
H A DMTFiber.h160 fiberContext.uc_stack.ss_sp = stackDesc.stackBottom; in Create()