summaryrefslogtreecommitdiffstats
path: root/src/libthread/PowerMacintosh.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-04-25 21:31:32 +0000
committerrsc <devnull@localhost>2004-04-25 21:31:32 +0000
commit10495dd32468a290704d0bd15346e7f66efce3d1 (patch)
tree16b37938e887671147aa31bd85d31222ac5a0e1c /src/libthread/PowerMacintosh.c
parente544651cc7662639c1feab89b31932e69be2c52a (diff)
downloadplan9port-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.c12
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);
+}
+