aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/threadimpl.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-07-19 11:43:12 +0000
committerrsc <devnull@localhost>2005-07-19 11:43:12 +0000
commit9d654ebc8c4824a46483e0d5cf37a3e0181fe552 (patch)
treefd8c035afe4739ba7ea2b3f125446b02dd4d515d /src/libthread/threadimpl.h
parent1041ea6f68276d65c3426df3ee3a6c5a396ab704 (diff)
downloadplan9port-9d654ebc8c4824a46483e0d5cf37a3e0181fe552.tar.gz
plan9port-9d654ebc8c4824a46483e0d5cf37a3e0181fe552.tar.bz2
plan9port-9d654ebc8c4824a46483e0d5cf37a3e0181fe552.zip
openbsd
Diffstat (limited to 'src/libthread/threadimpl.h')
-rw-r--r--src/libthread/threadimpl.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libthread/threadimpl.h b/src/libthread/threadimpl.h
index fff874d8..ad66ee5f 100644
--- a/src/libthread/threadimpl.h
+++ b/src/libthread/threadimpl.h
@@ -5,7 +5,7 @@
#include <sys/wait.h>
#include <sched.h>
#include <signal.h>
-#if !defined(_OpenBSD__)
+#if !defined(__OpenBSD__)
# include <ucontext.h>
#endif
#include <sys/utsname.h>
@@ -28,7 +28,11 @@ extern void makecontext(ucontext_t*, void(*)(), int, ...);
#endif
#if defined(__OpenBSD__)
-# include "power-ucontext.h"
+# if defined __i386__
+# include "386-ucontext.h"
+# else
+# include "power-ucontext.h"
+# endif
extern pid_t rfork_thread(int, void*, int(*)(void*), void*);
#endif