| 205 | } |
| 206 | |
| 207 | void Threading::Thread::SetStackSize(u32 size) |
| 208 | { |
| 209 | pxAssertRel(!m_native_handle, "Can't change the stack size on a started thread"); |
| 210 | m_stack_size = size; |
| 211 | } |
| 212 | |
| 213 | #ifdef __linux__ |
| 214 | // For Linux, we have to do a bit of trickery here to get the thread's ID back from |