diff options
author | Richard Carlsson <[email protected]> | 2019-01-09 14:14:58 +0100 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2019-01-14 14:22:26 +0100 |
commit | e96f66d8817d89c51b5066ed0cd69fcda8620306 (patch) | |
tree | f63839cbcec202cef1da3126ce89443c3d208761 /erts/doc | |
parent | f0ea49125815ec9197ffb6c74e20ebb5f10732d4 (diff) | |
download | otp-e96f66d8817d89c51b5066ed0cd69fcda8620306.tar.gz otp-e96f66d8817d89c51b5066ed0cd69fcda8620306.tar.bz2 otp-e96f66d8817d89c51b5066ed0cd69fcda8620306.zip |
Document that current_function can be undefined
If a process is executing in native-compiled code, process_info(Pid,
current_function) may return the atom undefined instead of an MFA.
Diffstat (limited to 'erts/doc')
-rw-r--r-- | erts/doc/src/erlang.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index 8e014c3010..ab9aadcc54 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -5182,11 +5182,13 @@ RealSystem = system + MissedSystem</code> changed or removed without prior notice.</p> </item> <tag><c>{current_function, {<anno>Module</anno>, - <anno>Function</anno>, Arity}}</c></tag> + <anno>Function</anno>, Arity} | undefined}</c></tag> <item> <p><c><anno>Module</anno></c>, <c><anno>Function</anno></c>, <c><anno>Arity</anno></c> is - the current function call of the process.</p> + the current function call of the process. The value + <c>undefined</c> can be returned if the process is + currently executing native compiled code.</p> </item> <tag><c>{current_location, {<anno>Module</anno>, <anno>Function</anno>, <anno>Arity</anno>, |