Skip to content
Snippets Groups Projects
Commit 020acb4f authored by Frans Kaashoek's avatar Frans Kaashoek
Browse files

For the convenience of students

parent 6650cc93
No related branches found
No related tags found
No related merge requests found
printpcs 0 → 100755
#!/bin/sh
# Decode the symbols from a panic stack trace on stdin
if which addr2line
then
p="addr2line"
else
p="i386-jos-elf-addr2line"
fi
echo grep '^ ' | $p -e kernel $*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment