LibPthread: Stub out pthread_atfork()

This commit is contained in:
AnotherTest 2021-02-13 14:38:54 +03:30 committed by Andreas Kling
commit 2e50c232f7
Notes: sideshowbarker 2024-07-18 22:14:48 +09:00
2 changed files with 7 additions and 0 deletions

View file

@ -740,4 +740,9 @@ int pthread_rwlockattr_setpshared(pthread_rwlockattr_t*, int)
ASSERT_NOT_REACHED();
}
int pthread_atfork(void (*)(void), void (*)(void), void (*)(void))
{
ASSERT_NOT_REACHED();
}
} // extern "C"