diff options
author | Lukas Larsson <[email protected]> | 2018-03-16 09:07:10 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2018-03-16 09:07:10 +0100 |
commit | 845dd68493a91decc32d50cc785e6afaf9dfb6c3 (patch) | |
tree | ca6c39477c10ff545b476a01d3fa2ae076e27bef /erts | |
parent | 9f39cf8dc59df1d1225c8264f2cdda6a432f83c1 (diff) | |
parent | f78c3ee64cd1328a03e4680d893ebfe8e47ac8b4 (diff) | |
download | otp-845dd68493a91decc32d50cc785e6afaf9dfb6c3.tar.gz otp-845dd68493a91decc32d50cc785e6afaf9dfb6c3.tar.bz2 otp-845dd68493a91decc32d50cc785e6afaf9dfb6c3.zip |
mikpe/process_info-1-no-messages/PR-1745/OTP-14986
make erlang:process_info/1 not retrieve messages
Diffstat (limited to 'erts')
-rw-r--r-- | erts/doc/src/erlang.xml | 1 | ||||
-rw-r--r-- | erts/emulator/beam/erl_bif_info.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index 8250ca5aff..c086928bb3 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -5040,7 +5040,6 @@ RealSystem = system + MissedSystem</code> <item><c>initial_call</c></item> <item><c>status</c></item> <item><c>message_queue_len</c></item> - <item><c>messages</c></item> <item><c>links</c></item> <item><c>dictionary</c></item> <item><c>trap_exit</c></item> diff --git a/erts/emulator/beam/erl_bif_info.c b/erts/emulator/beam/erl_bif_info.c index 6475f04c56..3f9b584c2e 100644 --- a/erts/emulator/beam/erl_bif_info.c +++ b/erts/emulator/beam/erl_bif_info.c @@ -698,7 +698,6 @@ static Eterm pi_1_keys[] = { am_initial_call, am_status, am_message_queue_len, - am_messages, am_links, am_dictionary, am_trap_exit, |