diff options
| author | rsc <devnull@localhost> | 2006-04-21 03:34:44 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2006-04-21 03:34:44 +0000 |
| commit | 110c707dda7d14af657a0cc184e60eb42af30c88 (patch) | |
| tree | c7e2cb832189c183e7af67ec01cecb9d4a1bc4c6 /src/libthread/Darwin-386.c | |
| parent | 6b11fe88cb3dd3a8181f56c24a33e065067d2170 (diff) | |
| download | plan9port-110c707dda7d14af657a0cc184e60eb42af30c88.tar.gz plan9port-110c707dda7d14af657a0cc184e60eb42af30c88.zip | |
darwin 386 start
Diffstat (limited to 'src/libthread/Darwin-386.c')
| -rw-r--r-- | src/libthread/Darwin-386.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/libthread/Darwin-386.c b/src/libthread/Darwin-386.c new file mode 100644 index 00000000..3725f264 --- /dev/null +++ b/src/libthread/Darwin-386.c @@ -0,0 +1,23 @@ +#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; +} + +int +swapcontext(ucontext_t *oucp, ucontext_t *ucp) +{ + if(getcontext(oucp) == 0) + setcontext(ucp); + return 0; +} + |
