From 57dc3983b001f6558b5d11bd8dbf8d9ec0fc91ba Mon Sep 17 00:00:00 2001 From: Bryan Call Date: Fri, 21 Aug 2020 11:31:57 -0700 Subject: [PATCH] Updated gdb mutex script to get process file for Fedora 32 --- tools/gdb_mutex_contention.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gdb_mutex_contention.pl b/tools/gdb_mutex_contention.pl index bb6c1647416..d58e28b9909 100755 --- a/tools/gdb_mutex_contention.pl +++ b/tools/gdb_mutex_contention.pl @@ -60,6 +60,7 @@ () # Grab the binary from the running pid my $binary = `ps --pid $pid -o command -h`; + $binary = (split(' ', $binary))[0]; chomp $binary; # Print out what we are going to run gdb on