finish conversion to libthread; avoids extra page proc sticking around (Tim Wiess)
diff --git a/src/cmd/page/page.c b/src/cmd/page/page.c
index 52c6eee..47a7f32 100644
--- a/src/cmd/page/page.c
+++ b/src/cmd/page/page.c
@@ -2,7 +2,6 @@
 #include <libc.h>
 #include <draw.h>
 #include <thread.h>
-#include <thread.h>
 #include <bio.h>
 #include <cursor.h>
 #include "page.h"
@@ -33,6 +32,14 @@
 	return 0;
 }
 
+void
+watcherproc(void *v)
+{
+	threadnotify(watcher, 1);
+	for(;;)
+		sleep(1000);
+}
+	
 int
 bell(void *u, char *x)
 {
@@ -131,21 +138,14 @@
 
 	notegp = getpid();
 
-	switch(notewatcher = fork()){
-	case -1:
-		sysfatal("fork\n");
+	notewatcher = proccreate(watcherproc, NULL, 1024);
+	if(notewatcher == -1){
+		sysfatal("proccreate");
 		threadexitsall(0);
-	default:
-		break;
-	case 0:
-		atnotify(watcher, 1);
-		for(;;)
-			sleep(1000);
-		/* not reached */
 	}
 
 	rfork(RFNOTEG);
-	atnotify(bell, 1);
+	threadnotify(bell, 1);
 
 	readstdin = 0;
 	if(imagemode == 0 && argc == 0){