doc: Fix references to power_off() to refer to correct function and file name.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 26 Jan 2010 17:12:50 +0000 (09:12 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 26 Jan 2010 17:13:01 +0000 (09:13 -0800)
Reported by Nathaniel Hardison <hardison@stanford.edu>.

doc/reference.texi
doc/userprog.texi

index 432bc8658d7bf41409d52919f7b7bf4dffe97ccf..88e20f9245deaeb830a8aa03efa25a9317ef7b21 100644 (file)
@@ -203,7 +203,7 @@ the kernel command line, such as @command{run} to run a test (in project
 1) or a user program (in later projects).
 
 Finally, if @option{-q} was specified on the kernel command line, we
-call @func{power_off} to terminate the machine simulator.  Otherwise,
+call @func{shutdown_power_off} to terminate the machine simulator.  Otherwise,
 @func{main} calls @func{thread_exit}, which allows any other running
 threads to continue running.
 
index a1321950fd3f877328f801853839be7c9cf69741..4082db12025d8e1f98279fd60865bbda0e13832a 100644 (file)
@@ -600,8 +600,8 @@ programs only.)  System call numbers for each system call are defined in
 @file{lib/syscall-nr.h}:
 
 @deftypefn {System Call} void halt (void)
-Terminates Pintos by calling @func{power_off} (declared in
-@file{threads/init.h}).  This should be seldom used, because you lose
+Terminates Pintos by calling @func{shutdown_power_off} (declared in
+@file{devices/shutdown.h}).  This should be seldom used, because you lose
 some information about possible deadlock situations, etc.
 @end deftypefn