diff options
| author | Russ Cox <rsc@swtch.com> | 2012-07-14 10:16:54 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2012-07-14 10:16:54 -0400 |
| commit | 20f5692b7fe1190e6c518ed82764ded41dd92986 (patch) | |
| tree | ab8d3b81a01e087180489b6c8627911440786976 /src/libthread/OpenBSD-x86_64.c | |
| parent | c934984537a7673f980d731e10baec18d0c97c05 (diff) | |
| download | plan9port-20f5692b7fe1190e6c518ed82764ded41dd92986.tar.gz plan9port-20f5692b7fe1190e6c518ed82764ded41dd92986.zip | |
openbsd updates (thanks Pascal Stumpf)
R=rsc
http://codereview.appspot.com/6401049
Diffstat (limited to 'src/libthread/OpenBSD-x86_64.c')
| -rw-r--r-- | src/libthread/OpenBSD-x86_64.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libthread/OpenBSD-x86_64.c b/src/libthread/OpenBSD-x86_64.c new file mode 100644 index 00000000..0593e481 --- /dev/null +++ b/src/libthread/OpenBSD-x86_64.c @@ -0,0 +1,32 @@ +#include "threadimpl.h" + +void +makecontext(ucontext_t *uc, void (*fn)(void), int argc, ...) +{ + uintptr *sp; + va_list arg; + +//fprint(2, "makecontext %d\n", argc); + if(argc != 2) + sysfatal("libthread: makecontext misused"); + va_start(arg, argc); + uc->mc.di = va_arg(arg, uint); + uc->mc.si = va_arg(arg, uint); +//fprint(2, "%ux %ux\n", uc->mc.di, uc->mc.si); + va_end(arg); + + sp = (uintptr*)((char*)uc->uc_stack.ss_sp+uc->uc_stack.ss_size); + *--sp = 0; // fn's return address + *--sp = (uintptr)fn; // return address of setcontext + uc->mc.sp = (uintptr)sp; +} + +int +swapcontext(ucontext_t *oucp, ucontext_t *ucp) +{ + if(getcontext(oucp) == 0) + setcontext(ucp); + return 0; +} + + |
