Home | History | Annotate | Download | only in bionic

Lines Matching refs:prepare

36   void (*prepare)(void);
52 // to the prepare and parent/child handlers.
55 // the list before forking, and have prepare, parent, and child all work on the consistent copy.
58 // Call pthread_atfork() prepare handlers. POSIX states that the prepare
62 if (it->prepare != NULL) {
63 it->prepare();
88 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void(*child)(void)) {
94 entry->prepare = prepare;