diff options
author | Björn Gustavsson <[email protected]> | 2016-11-02 12:35:07 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-11-02 12:35:07 +0100 |
commit | 5fe36fac74630bcb25558efbd98e6a6ca5f02f5a (patch) | |
tree | 73ecf2a621fbcdd5f280164b11e86f74b68ee64d /lib/stdlib/doc/src | |
parent | 1b205afda0a88e7740d6187990ab35562e9a48c4 (diff) | |
parent | 798f09de48b1a7abe43d54d6fa0377ad15c3f6aa (diff) | |
download | otp-5fe36fac74630bcb25558efbd98e6a6ca5f02f5a.tar.gz otp-5fe36fac74630bcb25558efbd98e6a6ca5f02f5a.tar.bz2 otp-5fe36fac74630bcb25558efbd98e6a6ca5f02f5a.zip |
Merge branch 'essen/stdlib/proc_lib-propagate-exceptions/PR-1088/OTP-14001'
* essen/stdlib/proc_lib-propagate-exceptions/PR-1088/OTP-14001:
Propagate exceptions fully when using proc_lib
Diffstat (limited to 'lib/stdlib/doc/src')
-rw-r--r-- | lib/stdlib/doc/src/proc_lib.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/stdlib/doc/src/proc_lib.xml b/lib/stdlib/doc/src/proc_lib.xml index da03c39a26..e64b2ce18a 100644 --- a/lib/stdlib/doc/src/proc_lib.xml +++ b/lib/stdlib/doc/src/proc_lib.xml @@ -66,6 +66,12 @@ <seealso marker="sasl:error_logging">SASL Error Logging</seealso> in the SASL User's Guide.</p> + <p>Unlike in "plain Erlang", <c>proc_lib</c> processes will not generate + <em>error reports</em>, which are written to the terminal by the + emulator and do not require SASL to be started. All exceptions are + converted to <em>exits</em> which are ignored by the default + <c>error_logger</c> handler.</p> + <p>The crash report contains the previously stored information, such as ancestors and initial function, the termination reason, and information about other processes that terminate as a result |