diff options
author | Siri Hansen <[email protected]> | 2018-04-26 15:39:28 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-04-26 15:39:28 +0200 |
commit | f24a15640beef8acd832e4a3eaf20bbd3c16e38d (patch) | |
tree | 49dd393216cd670ca6a6ba57f4784bff25b4d890 /system | |
parent | bfde922a6308a7f0956cf688ab38cbdbffbba41d (diff) | |
parent | 4b97ff92a8d2d429370da40c9845199c2a68f12d (diff) | |
download | otp-f24a15640beef8acd832e4a3eaf20bbd3c16e38d.tar.gz otp-f24a15640beef8acd832e4a3eaf20bbd3c16e38d.tar.bz2 otp-f24a15640beef8acd832e4a3eaf20bbd3c16e38d.zip |
Merge pull request #1759 from sunboshan/sys-fix
[stdlib/sys.erl] Fix sys module's debug statistics not including the out message count when using gen_server:call/2.
OTP-15047
Diffstat (limited to 'system')
-rw-r--r-- | system/doc/design_principles/spec_proc.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/design_principles/spec_proc.xml b/system/doc/design_principles/spec_proc.xml index 5f4e7ac685..f910c3dba3 100644 --- a/system/doc/design_principles/spec_proc.xml +++ b/system/doc/design_principles/spec_proc.xml @@ -312,7 +312,7 @@ sys:handle_debug(Deb, Func, Info, Event) => Deb1</code> define what a system event is and how it is to be represented. Typically at least incoming and outgoing messages are considered system events and represented by - the tuples <c>{in,Msg[,From]}</c> and <c>{out,Msg,To}</c>, + the tuples <c>{in,Msg[,From]}</c> and <c>{out,Msg,To[,State]}</c>, respectively.</item> </list> <p><c>handle_debug</c> returns an updated debug structure |