diff options
| author | rsc <devnull@localhost> | 2005-01-07 21:47:30 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2005-01-07 21:47:30 +0000 |
| commit | 50f7ec339a85ebe60390edc3c8cfb87bd2f57bc4 (patch) | |
| tree | aab8a650bbb8d14a85f0de151974fedcf77d28b3 /src/libthread/Darwin-power.c | |
| parent | 1aa9c533e0778d9917cdb19f71e3bc7416e8d528 (diff) | |
| download | plan9port-50f7ec339a85ebe60390edc3c8cfb87bd2f57bc4.tar.gz plan9port-50f7ec339a85ebe60390edc3c8cfb87bd2f57bc4.zip | |
initial darwin
Diffstat (limited to 'src/libthread/Darwin-power.c')
| -rw-r--r-- | src/libthread/Darwin-power.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/libthread/Darwin-power.c b/src/libthread/Darwin-power.c new file mode 100644 index 00000000..373cc623 --- /dev/null +++ b/src/libthread/Darwin-power.c @@ -0,0 +1,37 @@ +#include "threadimpl.h" + +void +makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...) +{ + ulong *sp, *tos; + va_list arg; + + tos = (ulong*)ucp->uc_stack.ss_sp+ucp->uc_stack.ss_size/sizeof(ulong); + sp = tos - 16; + ucp->label.pc = (long)func; + ucp->label.sp = (long)sp; + va_start(arg, argc); + ucp->label.r3 = va_arg(arg, long); + va_end(arg); +} + +void +getcontext(ucontext_t *uc) +{ + return __setlabel(uc); +} + +int +setcontext(ucontext_t *uc) +{ + return __gotolabel(uc); +} + +int +swapcontext(ucontext_t *oucp, ucontext_t *ucp) +{ + if(getcontext(oucp) == 0) + setcontext(ucp); + return 0; +} + |
