nn::os::Thread::StartUsingAutoStack Member Function#include <nn/os.h>
void StartUsingAutoStack(
void(*)() f,
size_t stackSize,
s32 priority = DEFAULT_THREAD_PRIORITY,
s32 coreNo = CORE_NO_USE_PROCESS_VALUE
);
template <typename T, typename U>
void StartUsingAutoStack(
void(*)(T) f,
U param,
size_t stackSize,
s32 priority = DEFAULT_THREAD_PRIORITY,
s32 coreNo = CORE_NO_USE_PROCESS_VALUE
);
StartUsingAutoStack(void(*)(), size_t, s32, s32)
|
Initializes and runs a thread. |
StartUsingAutoStack(void(*)(T), U, size_t, s32, s32)
|
Initializes and runs a thread. |
StartUsingAutoStack(void(*)(), size_t, s32, s32)Allocates a stack of the specified size using AutoStackManager and automatically destroys the stack when the thread is destroyed.
StartUsingAutoStack(void(*)(T), U, size_t, s32, s32)Allocates a stack of the specified size using AutoStackManager and automatically destroys the stack when the thread is destroyed.
CONFIDENTIAL