aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/OpenBSD-386.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-07-19 11:48:01 +0000
committerrsc <devnull@localhost>2005-07-19 11:48:01 +0000
commitbea4b9f7246169ee1bd2a64a4b2be2c02ffcec8b (patch)
treecdcd8c46e07e0c2cb0fda82c0c574162bf7e5253 /src/libthread/OpenBSD-386.c
parent9d654ebc8c4824a46483e0d5cf37a3e0181fe552 (diff)
downloadplan9port-bea4b9f7246169ee1bd2a64a4b2be2c02ffcec8b.tar.gz
plan9port-bea4b9f7246169ee1bd2a64a4b2be2c02ffcec8b.tar.bz2
plan9port-bea4b9f7246169ee1bd2a64a4b2be2c02ffcec8b.zip
openbsd
Diffstat (limited to 'src/libthread/OpenBSD-386.c')
-rw-r--r--src/libthread/OpenBSD-386.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/libthread/OpenBSD-386.c b/src/libthread/OpenBSD-386.c
new file mode 100644
index 00000000..74179743
--- /dev/null
+++ b/src/libthread/OpenBSD-386.c
@@ -0,0 +1,38 @@
+#include "threadimpl.h"
+
+void
+makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...)
+{
+ int *sp;
+
+ sp = (int*)ucp->uc_stack.ss_sp+ucp->uc_stack.ss_size/4;
+ sp -= argc;
+ memmove(sp, &argc+1, argc*sizeof(int));
+ *--sp = 0; /* return address */
+ ucp->uc_mcontext.mc_eip = (long)func;
+ ucp->uc_mcontext.mc_esp = (int)sp;
+}
+
+extern int getmcontext(mcontext_t*);
+extern int setmcontext(mcontext_t*);
+
+int
+getcontext(ucontext_t *uc)
+{
+ return getmcontext(&uc->uc_mcontext);
+}
+
+void
+setcontext(ucontext_t *uc)
+{
+ setmcontext(&uc->uc_mcontext);
+}
+
+int
+swapcontext(ucontext_t *oucp, ucontext_t *ucp)
+{
+ if(getcontext(oucp) == 0)
+ setcontext(ucp);
+ return 0;
+}
+