more 386 runtime:
remove use of _subv in vlrt.c
darwin/386/signal.c
darwin/386/*
linux/386/* (forgotten before)
can run empty program on darwin/386 now.
R=r
DELTA=1140 (1021 added, 114 deleted, 5 changed)
OCL=26942
CL=26968
diff --git a/src/runtime/darwin/thread.c b/src/runtime/darwin/thread.c
index 0d54177..c780e16 100644
--- a/src/runtime/darwin/thread.c
+++ b/src/runtime/darwin/thread.c
@@ -169,11 +169,7 @@
static void
macherror(int32 r, int8 *fn)
{
- prints("mach error ");
- prints(fn);
- prints(": ");
- sys·printint(r);
- prints("\n");
+ printf("mach error %s: %d\n", fn, r);
throw("mach error");
}