diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:57:43 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:57:43 +0000 |
commit | 224e167de0057b5e91f1aa313c3d416f95a915e1 (patch) | |
tree | f7b1383f68e5b2a276b29ece54bcd78d6cf06fb4 /boot | |
parent | 2f7781bd14964bc4b88508a433b406ec27cb6625 (diff) |
Formerly boot.c.~18~
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/boot.c b/boot/boot.c index b86b0a32..23a1b156 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -234,7 +234,7 @@ main (int argc, char **argv, char **envp) vm_address_t startpc; char msg[] = "Boot is here.\n"; char c; -/* struct sigvec vec = {read_reply, 0, 0}; */ + struct sigvec vec = {read_reply, 0, 0}; write (1, msg, sizeof msg); @@ -288,9 +288,9 @@ main (int argc, char **argv, char **envp) foo = 1; ioctl (0, FIOASYNC, &foo); -/* sigvec (SIGIO, &vec, 0); + sigvec (SIGIO, &vec, 0); sigvec (SIGMSG, &vec, 0); - sigvec (SIGEMSG, &vec, 0); */ + sigvec (SIGEMSG, &vec, 0); thread_create (newtask, &newthread); __mach_setup_thread (newtask, newthread, (char *)startpc, &fs_stack_base, |