diff options
author | Eddie Louie <eddie.louie@mongodb.com> | 2017-02-16 12:57:36 -0500 |
---|---|---|
committer | Eddie Louie <eddie.louie@mongodb.com> | 2017-02-21 17:21:57 -0500 |
commit | 89cc7047e7c5a7df0f2179821bf38b5ced2fd6c4 (patch) | |
tree | 5e7b0ec01c1ab110e2b5f393e5d086881a42d1c5 /buildscripts/hang_analyzer.py | |
parent | 499d5f22e2b08e66ae9d7f60f5ecc13088d06082 (diff) | |
download | mongo-89cc7047e7c5a7df0f2179821bf38b5ced2fd6c4.tar.gz |
SERVER-27876 Exclude stacks that are duplicates when dumping stacks on
Windows in hang_analyzer.py
Diffstat (limited to 'buildscripts/hang_analyzer.py')
-rwxr-xr-x | buildscripts/hang_analyzer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/hang_analyzer.py b/buildscripts/hang_analyzer.py index d9c1c5ad6e8..d91bdedf001 100755 --- a/buildscripts/hang_analyzer.py +++ b/buildscripts/hang_analyzer.py @@ -128,7 +128,7 @@ class WindowsDumper(object): ".reload", # Reload symbols "!peb", # Dump current exe, & environment variables "lm", # Dump loaded modules - "~* kp 100", # Dump All Threads with function arguments + "!uniqstack -pn", # Dump All unique Threads with function arguments "!cs -l", # Dump all locked critical sections ".dump /ma /u dump_" + process_name + "." + str(pid) + "." + self.get_dump_ext() if take_dump else "", # Dump to file, dump_<process name>_<time stamp>_<pid in hex>.<pid>.mdmp |