Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-19 | Convert XML files to UTF-8 | Hans Bolinder | |
2012-03-30 | Update copyright years | Björn-Egil Dahlberg | |
2012-02-24 | Fix supervisor doc: Shutdown, MaxR and MaxT type specs | Ricardo Catalinas Jiménez | |
The next code snippets from supervisor.erl show that Shutdown from a child specification must be greater than zero and the same applies to MaxT. --- supervisor.erl ---------------------------------------------------------- validShutdown(Shutdown, _) when is_integer(Shutdown), Shutdown > 0 -> true; validShutdown(infinity, _) -> true; validShutdown(brutal_kill, _) -> true; validShutdown(Shutdown, _) -> throw({invalid_shutdown, Shutdown}). validIntensity(Max) when is_integer(Max), Max >= 0 -> true; validIntensity(What) -> throw({invalid_intensity, What}). validPeriod(Period) when is_integer(Period), Period > 0 -> true; validPeriod(What) -> throw({invalid_period, What}). ----------------------------------------------------------------------------- | |||
2012-02-08 | Fix typo in supervisor behaviour doc | Ricardo Catalinas Jiménez | |
Remove unnecessary > from a CDATA section. | |||
2011-11-16 | Improve documentation on supervisor restart strategy | Siri Hansen | |
2011-10-20 | Merge branch 'cf/simple_one_for_one_shutdown' | Henrik Nord | |
* cf/simple_one_for_one_shutdown: Explain how dynamic child processes are stopped Stack errors when dynamic children are stopped Explicitly kill dynamic children in supervisors Conflicts: lib/stdlib/doc/src/supervisor.xml OTP-9647 | |||
2011-10-10 | Add a warning to docs about workers' shutdown strategy | Christopher Faulet | |
2011-10-10 | Allow an infinite timeout to shutdown worker processes | Christopher Faulet | |
Now, in child specification, the shutdown value can also be set to infinity for worker children. This restriction was removed because this is not always possible to predict the shutdown time for a worker. This is highly application-dependent. | |||
2011-09-16 | Explain how dynamic child processes are stopped | Christopher Faulet | |
2011-04-13 | Add terminate_child(Sup, Pid) for simple_one_for_one | Siri Hansen | |
2009-11-20 | The R13B03 release.OTP_R13B03 | Erlang/OTP | |