Print a stack trace of running processes
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Matteo Cypriani 150a89bb40 README.md: improve markup 7 years ago
man1 Initial commit (pstack v1.2) 12 years ago
.gitattributes Don't include .*ignore files in archives 12 years ago
.gitignore Add .gitignore file 12 years ago
COPYING Initial commit (pstack v1.2) 12 years ago
Makefile Makefile cleaning 11 years ago
README.md README.md: improve markup 7 years ago
VERSION New release: pstack 1.3.1 12 years ago
changelog New release: pstack 1.3.1 12 years ago
pstack.c Ignore VDSO object 10 years ago

README.md

pstack - print stack trace of running processes

pstack dumps a stack trace for a process, given the pid of that process. If the process named is part of a thread group, then all the threads inthe group are traced. See the man page for more information.

This program was inspired by the 'pstack' program available on Solaris.

Supported Platforms

This program runs on 32 bit x86 machines, using ELF binaries generated from GNU compilers. If threads are being used, it depends on a debuggable version of the pthreads library to find the threads in the thread group. If anyone wants to port this to other architectures, please let me know about questions you may have, or achievements you have made. I'd like to incorporate such changes into my version of the code.

Features

  • symbolic address dumping
  • thread group support

Build, install, uninstall

make
make install
make uninstall

Note: you must be root to [un]install. pstack will run fine from any directory, install just puts the binary and man page in 'normal' places (/usr/local/...)

USAGE: pstack pid [...]

See the man page for more details.