Searched refs:pageSize (Results 1 – 1 of 1) sorted by relevance
104 size_t pageSize = systemInfo.dwPageSize; in AllocStack() local105 size_t pagesCount = size / pageSize; in AllocStack()108 if ((size % pageSize) > 0) in AllocStack()116 desc.stackMemoryBytesCount = pagesCount * pageSize; in AllocStack()120 desc.stackBottom = desc.stackMemory + pageSize; in AllocStack()130 int pageSize = (int)sysconf(_SC_PAGE_SIZE); in AllocStack() local131 int pagesCount = (int)(size / pageSize); in AllocStack()134 if ((size % pageSize) > 0) in AllocStack()142 desc.stackMemoryBytesCount = pagesCount * pageSize; in AllocStack()147 desc.stackBottom = desc.stackMemory + pageSize; in AllocStack()[all …]