Commit Diff


commit - 1041ea6f68276d65c3426df3ee3a6c5a396ab704
commit + 9d654ebc8c4824a46483e0d5cf37a3e0181fe552
blob - fff874d8a4f7a769277c89d962eb1bcf998d3dde
blob + ad66ee5f582643412d765968d4db8a468cd594c2
--- src/libthread/threadimpl.h
+++ 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