enum class thread_stacksize
Description
//////////////////////////////////////////////////////////////////////// thread_stacksizeA \areferences any of the possible stack-sizes for pika threads.
Declared at: libs/pika/coroutines/include/pika/coroutines/thread_enums.hpp:162
Enumerators
| Name | Value | Comment |
|---|---|---|
| unknown | -1 | |
| small_ | 1 | use small stack size (the underscore is to work |
| medium | 2 | use medium sized stack size |
| large | 3 | use large stack size |
| huge | 4 | use very large stack size |
| nostack | 5 | this thread does not suspend (does not need a stack) |
| current | 6 | use size of current thread's stack |
| default_ | 1 | use default stack size |
| minimal | 1 | use minimally stack size |
| maximal | 4 | use maximally stack size |