Home
last modified time | relevance | path

Searched refs:stackMemoryBytesCount (Results 1 – 2 of 2) sorted by relevance

/TaskScheduler/Scheduler/Source/
H A DMTDefaultAppInterop.cpp116 desc.stackMemoryBytesCount = pagesCount * pageSize; in AllocStack()
117 …desc.stackMemory = (char*)VirtualAlloc(NULL, desc.stackMemoryBytesCount, MW_MEM_COMMIT, MW_PAGE_RE… in AllocStack()
121 desc.stackTop = desc.stackMemory + desc.stackMemoryBytesCount; in AllocStack()
142 desc.stackMemoryBytesCount = pagesCount * pageSize; in AllocStack()
143 …desc.stackMemory = (char*)mmap(NULL, desc.stackMemoryBytesCount, PROT_READ | PROT_WRITE, MAP_PRIV… in AllocStack()
148 desc.stackTop = desc.stackMemory + desc.stackMemoryBytesCount; in AllocStack()
170 int res = munmap(desc.stackMemory, desc.stackMemoryBytesCount); in FreeStack()
/TaskScheduler/Scheduler/Include/
H A DMTAppInterop.h60 size_t stackMemoryBytesCount; member
67 , stackMemoryBytesCount(0) in StackDesc()