diff options
author | Siri Hansen <[email protected]> | 2016-09-27 10:54:10 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-09-27 10:54:10 +0200 |
commit | cf7220cd933a7b7efbb79c2b8458b21ff047d863 (patch) | |
tree | d32295d74e8f397f586467d9c9b6465f9f5cc40a /lib/runtime_tools | |
parent | cd4916b5fa531bdfea77a87bd8f37133955532f9 (diff) | |
parent | ac1a648ff518e0aa92cb14773b617829081a75d0 (diff) | |
download | otp-cf7220cd933a7b7efbb79c2b8458b21ff047d863.tar.gz otp-cf7220cd933a7b7efbb79c2b8458b21ff047d863.tar.bz2 otp-cf7220cd933a7b7efbb79c2b8458b21ff047d863.zip |
Merge branch 'siri/ttb/ip-client-queue-size/OTP-13829' into maint
* siri/ttb/ip-client-queue-size/OTP-13829:
[ttb] Add option <c>queue_size</c> to tracer/2
Diffstat (limited to 'lib/runtime_tools')
-rw-r--r-- | lib/runtime_tools/doc/src/dbg.xml | 2 | ||||
-rw-r--r-- | lib/runtime_tools/src/dbg.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/runtime_tools/doc/src/dbg.xml b/lib/runtime_tools/doc/src/dbg.xml index db04bfdf7b..95f74d4607 100644 --- a/lib/runtime_tools/doc/src/dbg.xml +++ b/lib/runtime_tools/doc/src/dbg.xml @@ -954,7 +954,7 @@ Error: fun containing local erlang function calls ('is_atomm' called in guard)\ as the tuple <c>{drop, N}</c> where <c>N</c> is the number of consecutive messages dropped. In case of heavy tracing, drop's are likely to occur, and they surely occur if no client is reading the trace - messages.</p> + messages. The default value of <c>QueSize</c> is 200.</p> </desc> </func> <func> diff --git a/lib/runtime_tools/src/dbg.erl b/lib/runtime_tools/src/dbg.erl index c0d4665bda..f17aa528ed 100644 --- a/lib/runtime_tools/src/dbg.erl +++ b/lib/runtime_tools/src/dbg.erl @@ -427,7 +427,7 @@ trace_port(file, Filename) -> trace_port1(file, Filename, nowrap); trace_port(ip, Portno) when is_integer(Portno) -> - trace_port(ip,{Portno,50}); + trace_port(ip,{Portno,200}); trace_port(ip, {Portno, Qsiz}) when is_integer(Portno), is_integer(Qsiz) -> fun() -> |