mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
15 lines
243 B
Text
15 lines
243 B
Text
![]() |
#!/bin/sh
|
||
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
CRASH_PROGRAM_ID=$1
|
||
|
STACKDUMP_FILE=$2
|
||
|
|
||
|
TMP=$(mktemp)
|
||
|
|
||
|
for t in /proc/$CRASH_PROGRAM_ID/task/*; do
|
||
|
tid=$(basename $t)
|
||
|
cat /proc/$tid/stat | awk '{print $29}' >> $TMP
|
||
|
done
|
||
|
|
||
|
mv $TMP $STACKDUMP_FILE
|