rt: dummy function pthread_atfork for android

This commit is contained in:
Young-il Choi 2013-06-11 14:52:15 +09:00
parent 37733c7eaf
commit febba9f418
1 changed files with 7 additions and 0 deletions

View File

@ -76,4 +76,11 @@ extern "C" void globfree(glob_t *pglob)
{
}
extern "C" int pthread_atfork(void (*prefork)(void),
void (*postfork_parent)(void),
void (*postfork_child)(void))
{
return 0;
}
#endif