auto merge of #7054 : yichoi/rust/after_jemalloc, r=brson

jemalloc searches pthread_atfork
This commit is contained in:
bors 2013-06-10 23:28:34 -07:00
commit 6bdd4c8545
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