Hi,
Is there any limit in stack usage for the psp? I mean, size of data I can allocate in stack has to be of a determinated size?.
HexDump.
PSP Stack Size?
> Is there any limit in stack usage for the psp?
Each thread has their own stack.
See "PSP_MAINTHREAD_STACK_SIZE_KB" in the PSPSDK. This lets you change the stack size for the main thread (started by the startup/runtime). Default looks to be a whopping 256KB in size.
For your own threads you start, you can specify the initial stack size (see "sceKernelCreateThread")
Each thread has their own stack.
See "PSP_MAINTHREAD_STACK_SIZE_KB" in the PSPSDK. This lets you change the stack size for the main thread (started by the startup/runtime). Default looks to be a whopping 256KB in size.
For your own threads you start, you can specify the initial stack size (see "sceKernelCreateThread")