diff options
author | Siri Hansen <[email protected]> | 2011-03-07 08:29:22 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-03-07 08:29:22 +0100 |
commit | 5878040bda0427afebf4581534b6dd6febd4b3ce (patch) | |
tree | 62f4c14b188ad04befa18822a83644eba3115672 /lib/observer/priv/bin | |
parent | dead903e9703ee043a6195cbba9b1ddd8935cba3 (diff) | |
parent | e98f3bded140a81a47667b37b6d879ee56fa0f8d (diff) | |
download | otp-5878040bda0427afebf4581534b6dd6febd4b3ce.tar.gz otp-5878040bda0427afebf4581534b6dd6febd4b3ce.tar.bz2 otp-5878040bda0427afebf4581534b6dd6febd4b3ce.zip |
Merge branch 'siri/observer/slow-load-of-big-crashdumps/OTP-9051' into dev
* siri/observer/slow-load-of-big-crashdumps/OTP-9051:
Wait longer than 5 sec instead of 2.5 sec for crashdump to be created in test
Bugfix: Never deliver empty chunk to inets
Fix file descriptor leak in crashdump_viewer:chunk_page
Minor bugfix related to improved performance of crashdump_viewer
Document new cdv script and cdv.bat file for starting crashdump viewer
Add shell script and .bat file to start crashdump_viewer
Fix slow parsing of crashdumps
Diffstat (limited to 'lib/observer/priv/bin')
-rwxr-xr-x | lib/observer/priv/bin/cdv | 4 | ||||
-rw-r--r-- | lib/observer/priv/bin/cdv.bat | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lib/observer/priv/bin/cdv b/lib/observer/priv/bin/cdv new file mode 100755 index 0000000000..1c44785ac2 --- /dev/null +++ b/lib/observer/priv/bin/cdv @@ -0,0 +1,4 @@ +#!/bin/sh + +erl -sname cdv -noinput -s crashdump_viewer script_start $@ + diff --git a/lib/observer/priv/bin/cdv.bat b/lib/observer/priv/bin/cdv.bat new file mode 100644 index 0000000000..efa8bf8687 --- /dev/null +++ b/lib/observer/priv/bin/cdv.bat @@ -0,0 +1,2 @@ +@ECHO OFF +CALL werl -sname cdv -s crashdump_viewer script_start %* |