diff options
author | Siri Hansen <[email protected]> | 2017-09-07 15:38:12 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2017-09-13 17:45:25 +0200 |
commit | 0994e6fcef37da935ade7952e4ed1b6573eca033 (patch) | |
tree | f74e881eb53f6c76d4b87662cc47176adbdc2b89 /lib/observer/priv/bin/cdv | |
parent | 8e5fff1eb3a967ebc66c4cec1dd91699cdea66c0 (diff) | |
download | otp-0994e6fcef37da935ade7952e4ed1b6573eca033.tar.gz otp-0994e6fcef37da935ade7952e4ed1b6573eca033.tar.bz2 otp-0994e6fcef37da935ade7952e4ed1b6573eca033.zip |
cdv: Set ERL_CRASH_DUMP_SECONDS to 0 in cdv scripts
This is to avoid crashdumps generated by crashdump_viewer, possibly
overwriting the currently analysed crashdump.
Diffstat (limited to 'lib/observer/priv/bin/cdv')
-rwxr-xr-x | lib/observer/priv/bin/cdv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/observer/priv/bin/cdv b/lib/observer/priv/bin/cdv index d14fd47e41..2a509c16af 100755 --- a/lib/observer/priv/bin/cdv +++ b/lib/observer/priv/bin/cdv @@ -1,4 +1,4 @@ #!/bin/sh -erl -noinput -s crashdump_viewer script_start $@ +erl -env ERL_CRASH_DUMP_SECONDS 0 -noinput -s crashdump_viewer script_start $@ |