xref: /haiku/src/system/libroot/posix/pthread/pthread_atfork.c (revision 47a21c5c89fc9fd155a3929e5a8f6056b92a2053)
15af32e75SAxel Dörfler /*
25af32e75SAxel Dörfler ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3*47a21c5cSAugustin Cavalier ** Distributed under the terms of the MIT License.
45af32e75SAxel Dörfler */
55af32e75SAxel Dörfler 
65af32e75SAxel Dörfler 
75af32e75SAxel Dörfler #include <pthread.h>
85af32e75SAxel Dörfler #include <fork.h>
95af32e75SAxel Dörfler 
105af32e75SAxel Dörfler 
115af32e75SAxel Dörfler int
pthread_atfork(void (* prepare)(void),void (* parent)(void),void (* child)(void))125af32e75SAxel Dörfler pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void))
135af32e75SAxel Dörfler {
145af32e75SAxel Dörfler 	return __register_atfork(prepare, parent, child);
155af32e75SAxel Dörfler }
165af32e75SAxel Dörfler 
17