This commit is contained in:
rsc 2005-07-19 11:43:12 +00:00
parent 1041ea6f68
commit 9d654ebc8c

View file

@ -5,7 +5,7 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <sched.h> #include <sched.h>
#include <signal.h> #include <signal.h>
#if !defined(_OpenBSD__) #if !defined(__OpenBSD__)
# include <ucontext.h> # include <ucontext.h>
#endif #endif
#include <sys/utsname.h> #include <sys/utsname.h>
@ -28,7 +28,11 @@ extern void makecontext(ucontext_t*, void(*)(), int, ...);
#endif #endif
#if defined(__OpenBSD__) #if defined(__OpenBSD__)
# if defined __i386__
# include "386-ucontext.h"
# else
# include "power-ucontext.h" # include "power-ucontext.h"
# endif
extern pid_t rfork_thread(int, void*, int(*)(void*), void*); extern pid_t rfork_thread(int, void*, int(*)(void*), void*);
#endif #endif