diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-12-02 11:45:16 -0500 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-12-02 11:45:16 -0500 |
commit | cd675c9e3d80f012bbe654d098a988074bd57abc (patch) | |
tree | 2ae723463f1b96ad2ca3f26d99ee510137a5a1f8 /buildscripts | |
parent | e5adf96328dfa610367960ff9edf3df0e76fef15 (diff) | |
download | mongo-cd675c9e3d80f012bbe654d098a988074bd57abc.tar.gz |
SERVER-15407 Set Thread Name in Windows, Mac OS X, and Linux
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/hang_analyzer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildscripts/hang_analyzer.py b/buildscripts/hang_analyzer.py index c44c816d93a..1a1c88d0396 100755 --- a/buildscripts/hang_analyzer.py +++ b/buildscripts/hang_analyzer.py @@ -289,6 +289,7 @@ class GDBDumper(object): "set pagination off", "attach %d" % pid, "info sharedlibrary", + "info threads", # Dump a simple list of commands to get the thread name "thread apply all bt", "gcore dump_" + process_name + "." + str(pid) + "." + self.get_dump_ext() if take_dump else "", "set confirm off", |