diff options
author | rtm <rtm> | 2007-10-20 18:25:38 +0000 |
---|---|---|
committer | rtm <rtm> | 2007-10-20 18:25:38 +0000 |
commit | fd6b029401e359ce25cf0c3d8c0f047b2e2a5632 (patch) | |
tree | 9c9a89906e52fd18db2755c6224e4eca106b69b3 /proc.c | |
parent | 949352af6695cfbfc91a5c0e24ddae95c497b008 (diff) | |
download | xv6-labs-fd6b029401e359ce25cf0c3d8c0f047b2e2a5632.tar.gz xv6-labs-fd6b029401e359ce25cf0c3d8c0f047b2e2a5632.tar.bz2 xv6-labs-fd6b029401e359ce25cf0c3d8c0f047b2e2a5632.zip |
proc_wait -> wait
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -382,7 +382,7 @@ exit(void) acquire(&proc_table_lock); - // Parent might be sleeping in proc_wait. + // Parent might be sleeping in wait(). wakeup1(cp->parent); // Pass abandoned children to init. |