mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 11:35:45 +00:00
kernel: Add noreturn
This commit is contained in:
parent
741427040f
commit
11bfdf2348
1 changed files with 1 additions and 1 deletions
|
@ -1276,7 +1276,7 @@ int PS4_SYSV_ABI scePthreadOnce(int* once_control, void (*init_routine)(void)) {
|
|||
return pthread_once(reinterpret_cast<pthread_once_t*>(once_control), init_routine);
|
||||
}
|
||||
|
||||
void PS4_SYSV_ABI scePthreadExit(void *value_ptr) {
|
||||
[[noreturn]] void PS4_SYSV_ABI scePthreadExit(void *value_ptr) {
|
||||
pthread_exit(value_ptr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue