diff options
| author | rsc <devnull@localhost> | 2004-04-25 21:31:32 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2004-04-25 21:31:32 +0000 |
| commit | 10495dd32468a290704d0bd15346e7f66efce3d1 (patch) | |
| tree | 16b37938e887671147aa31bd85d31222ac5a0e1c /src/libthread/PowerMacintosh.c | |
| parent | e544651cc7662639c1feab89b31932e69be2c52a (diff) | |
| download | plan9port-10495dd32468a290704d0bd15346e7f66efce3d1.tar.gz plan9port-10495dd32468a290704d0bd15346e7f66efce3d1.zip | |
add stubs for other systems.
add threadspawn.
Diffstat (limited to 'src/libthread/PowerMacintosh.c')
| -rw-r--r-- | src/libthread/PowerMacintosh.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libthread/PowerMacintosh.c b/src/libthread/PowerMacintosh.c index 12d180e5..21f6041d 100644 --- a/src/libthread/PowerMacintosh.c +++ b/src/libthread/PowerMacintosh.c @@ -25,3 +25,15 @@ _threadinitstack(Thread *t, void (*f)(void*), void *arg) t->sched.sp = (ulong)tos-80; } +void +_threadinswitch(int enter) +{ + USED(enter); +} + +void +_threadstacklimit(void *addr) +{ + USED(addr); +} + |
