diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-18 21:03:03 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-18 21:03:03 +0800 |
commit | f04dd846385283a97ea0fb6a833f0f10af6258c0 (patch) | |
tree | 4624c3bda741d942cfaad98970b3f2c6ecfdc5aa /sysutils | |
parent | f6e5cba76163d17d6a7a5b525ad4e5eec4ba6d29 (diff) | |
download | freebsd-ports-gnome-f04dd846385283a97ea0fb6a833f0f10af6258c0.tar.gz freebsd-ports-gnome-f04dd846385283a97ea0fb6a833f0f10af6258c0.tar.zst freebsd-ports-gnome-f04dd846385283a97ea0fb6a833f0f10af6258c0.zip |
add pstack 1.0
Retrieve process/core file stack traces
PR: 37632
Submitted by: Peter Edwards <pmedwards@eircom.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pstack/Makefile | 20 | ||||
-rw-r--r-- | sysutils/pstack/distinfo | 1 | ||||
-rw-r--r-- | sysutils/pstack/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/pstack/pkg-descr | 6 | ||||
-rw-r--r-- | sysutils/pstack/pkg-plist | 1 |
6 files changed, 30 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index b048f38514e3..6de64dac79d8 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -165,6 +165,7 @@ SUBDIR += procmap SUBDIR += pslist SUBDIR += psmisc + SUBDIR += pstack SUBDIR += pstree SUBDIR += pwgen SUBDIR += pyfind diff --git a/sysutils/pstack/Makefile b/sysutils/pstack/Makefile new file mode 100644 index 000000000000..576688ce35ad --- /dev/null +++ b/sysutils/pstack/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: pstack +# Date created: 1 May 2002 +# Whom: Peter Edwards <pmedwards@eircom.net> +# +# $FreeBSD$ +# + +PORTNAME= pstack +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://homepage.eircom.net/~pmedwards/ + +MAINTAINER= pmedwards@eircom.net + +ONLY_FOR_ARCHS= i386 + +MANCOMPRESSED= yes +MAN1= pstack.1 + +.include <bsd.port.mk> diff --git a/sysutils/pstack/distinfo b/sysutils/pstack/distinfo new file mode 100644 index 000000000000..abf6085402e8 --- /dev/null +++ b/sysutils/pstack/distinfo @@ -0,0 +1 @@ +MD5 (pstack-1.0.tar.gz) = 3fff176444400de38ac9a42cdaeb039f diff --git a/sysutils/pstack/pkg-comment b/sysutils/pstack/pkg-comment new file mode 100644 index 000000000000..73f94ba5ddc1 --- /dev/null +++ b/sysutils/pstack/pkg-comment @@ -0,0 +1 @@ +Retrieve process/core file stack traces diff --git a/sysutils/pstack/pkg-descr b/sysutils/pstack/pkg-descr new file mode 100644 index 000000000000..1482052412ab --- /dev/null +++ b/sysutils/pstack/pkg-descr @@ -0,0 +1,6 @@ +"pstack" is a workalike for the Solaris program of the same name. +Running pstack on a process or core file produces a stack trace of +each thread in that process. + +It's useful for finding out what wedged processes are up to, getting +profiles of what applications, and just satisfying one's curiosity. diff --git a/sysutils/pstack/pkg-plist b/sysutils/pstack/pkg-plist new file mode 100644 index 000000000000..fde6bccac0b3 --- /dev/null +++ b/sysutils/pstack/pkg-plist @@ -0,0 +1 @@ +bin/pstack |