diff options
author | Björn Gustavsson <[email protected]> | 2016-01-27 12:39:05 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-01-27 16:33:24 +0100 |
commit | 480239fc11d72cf3434e61b541ffec9cb98c2db3 (patch) | |
tree | 58e4de13e618ffdf55b236800c48e60e957c9106 /lib/kernel/src/code_server.erl | |
parent | b42d79a563993bacafcd3e4be24f324406e65c26 (diff) | |
download | otp-480239fc11d72cf3434e61b541ffec9cb98c2db3.tar.gz otp-480239fc11d72cf3434e61b541ffec9cb98c2db3.tar.bz2 otp-480239fc11d72cf3434e61b541ffec9cb98c2db3.zip |
code_server: Don't export internal system_* functions
There is no reason to export system_continue/3 and system_terminate/4
from code_server. Servers that use proc_lib and 'sys' to handle system
message do need those functions exported, but code_server contains a
modified copy of the system message handling code from 'sys', and that
code only make local calls to system_continue/3 and
system_terminate/4.
Diffstat (limited to 'lib/kernel/src/code_server.erl')
-rw-r--r-- | lib/kernel/src/code_server.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/kernel/src/code_server.erl b/lib/kernel/src/code_server.erl index 83b14a6ee4..77d531b2bd 100644 --- a/lib/kernel/src/code_server.erl +++ b/lib/kernel/src/code_server.erl @@ -23,8 +23,6 @@ -export([start_link/1, call/1, - system_continue/3, - system_terminate/4, system_code_change/4, error_msg/2, info_msg/2 ]). |