Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/realtime.in
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ FindRunningProcs() {
if test -z "$all"; then
return # No procs named $proc_name found at all
fi
local live="$(ps -p "$all" -o pid=,s= | ${AWK} '$2 != "Z" {print $1}')"
local live="$(ps -p "$all" -o pid= -o s= | ${AWK} '$2 != "Z" {print $1}')"
if test -z "$live"; then
return # No non-zombie procs named $proc_name found
fi
Expand Down