mirror of https://github.com/mgba-emu/mgba.git
PSP2: Update threading.h for newer SDK
This commit is contained in:
parent
305e8c009c
commit
127a2d0820
|
@ -127,7 +127,7 @@ static inline int ThreadCreate(Thread* thread, ThreadEntry entry, void* context)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int ThreadJoin(Thread thread) {
|
static inline int ThreadJoin(Thread thread) {
|
||||||
return sceKernelWaitThreadEnd(thread, 0);
|
return sceKernelWaitThreadEnd(thread, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int ThreadSetName(const char* name) {
|
static inline int ThreadSetName(const char* name) {
|
||||||
|
|
Loading…
Reference in New Issue