diff options
author | Magnus Henoch <[email protected]> | 2010-09-15 14:34:06 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-17 10:42:03 +0200 |
commit | b915bb2da3e5f507439df3ee8e259fb0a9bc424e (patch) | |
tree | 16014c07213b2fd1a0989b4562f9bfeb0e713095 /lib/stdlib/doc | |
parent | c9a40f46a37bd0891779d9204244a86ffb34a683 (diff) | |
download | otp-b915bb2da3e5f507439df3ee8e259fb0a9bc424e.tar.gz otp-b915bb2da3e5f507439df3ee8e259fb0a9bc424e.tar.bz2 otp-b915bb2da3e5f507439df3ee8e259fb0a9bc424e.zip |
Clarify documentation of shutdown timeout in supervisor child specs
Make it explicit that the shutdown timeout is to be specified in
milliseconds.
Diffstat (limited to 'lib/stdlib/doc')
-rw-r--r-- | lib/stdlib/doc/src/supervisor.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/supervisor.xml b/lib/stdlib/doc/src/supervisor.xml index c696434d49..45fa0847a8 100644 --- a/lib/stdlib/doc/src/supervisor.xml +++ b/lib/stdlib/doc/src/supervisor.xml @@ -156,7 +156,7 @@ child_spec() = {Id,StartFunc,Restart,Shutdown,Type,Modules} the child process to terminate by calling <c>exit(Child,shutdown)</c> and then wait for an exit signal with reason <c>shutdown</c> back from the child process. If - no exit signal is received within the specified time, + no exit signal is received within the specified number of milliseconds, the child process is unconditionally terminated using <c>exit(Child,kill)</c>.</p> <p>If the child process is another supervisor, <c>Shutdown</c> |