Lines Matching refs:prepare
12 void (*prepare)(void);
27 if (p->prepare) p->prepare();
30 // The gwpasan prepare must be executed last,and the gwpasan handler must be executed first.
31 if (gwpfuncs && gwpfuncs->prepare) gwpfuncs->prepare();
45 int pthread_atfork_for_gwpasan(void (*prepare)(void), void (*parent)(void), void (*child)(void))
51 new->prepare = prepare;
59 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void))
67 new->prepare = prepare;