Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Oct 2012 11:56:18 +0000 (UTC)
From:      Andrey Zonov <zont@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r241159 - stable/8/bin/ps
Message-ID:  <201210031156.q93BuIma022828@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zont
Date: Wed Oct  3 11:56:18 2012
New Revision: 241159
URL: http://svn.freebsd.org/changeset/base/241159

Log:
  MFC r240645:
  - Add 'dsiz' and 'ssiz' keywords to show data and stack size respectively.
  
  MFC r240649:
  - Bump date.
  
  Approved by:	kib (mentor)

Modified:
  stable/8/bin/ps/keyword.c
  stable/8/bin/ps/ps.1
Directory Properties:
  stable/8/bin/ps/   (props changed)

Modified: stable/8/bin/ps/keyword.c
==============================================================================
--- stable/8/bin/ps/keyword.c	Wed Oct  3 11:56:01 2012	(r241158)
+++ stable/8/bin/ps/keyword.c	Wed Oct  3 11:56:18 2012	(r241159)
@@ -87,6 +87,8 @@ static VAR var[] = {
 	{"cpu", "CPU", NULL, 0, kvar, NULL, 3, KOFF(ki_estcpu), UINT, "d",
 		0},
 	{"cputime", "", "time", 0, NULL, NULL, 0, 0, CHAR, NULL, 0},
+	{"dsiz", "DSIZ", NULL, 0, kvar, NULL, 4, KOFF(ki_dsize), PGTOK, "ld",
+		0},
 	{"emul", "EMUL", NULL, LJUST, emulname, NULL, EMULLEN, 0, CHAR,
 		NULL, 0},
 	{"etime", "ELAPSED", NULL, USER, elapsed, NULL, 12, 0, CHAR, NULL, 0},
@@ -179,6 +181,8 @@ static VAR var[] = {
 		UINT, "x", 0},
 	{"sl", "SL", NULL, INF127, kvar, NULL, 3, KOFF(ki_slptime), UINT, "d",
 		0},
+	{"ssiz", "SSIZ", NULL, 0, kvar, NULL, 4, KOFF(ki_ssize), PGTOK, "ld",
+		0},
 	{"start", "STARTED", NULL, LJUST|USER, started, NULL, 7, 0, CHAR, NULL,
 		0},
 	{"stat", "", "state", 0, NULL, NULL, 0, 0, CHAR, NULL, 0},

Modified: stable/8/bin/ps/ps.1
==============================================================================
--- stable/8/bin/ps/ps.1	Wed Oct  3 11:56:01 2012	(r241158)
+++ stable/8/bin/ps/ps.1	Wed Oct  3 11:56:18 2012	(r241159)
@@ -29,7 +29,7 @@
 .\"     @(#)ps.1	8.3 (Berkeley) 4/18/94
 .\" $FreeBSD$
 .\"
-.Dd May 20, 2012
+.Dd September 18, 2012
 .Dt PS 1
 .Os
 .Sh NAME
@@ -490,6 +490,8 @@ command and arguments
 number of copy-on-write faults
 .It Cm cpu
 short-term CPU usage factor (for scheduling)
+.It Cm dsiz
+data size (in Kbytes)
 .It Cm etime
 elapsed running time
 .It Cm flags
@@ -587,6 +589,8 @@ blocked signals (alias
 .Cm blocked )
 .It Cm sl
 sleep time (in seconds; 127 = infinity)
+.It Cm ssiz
+stack size (in Kbytes)
 .It Cm start
 time started
 .It Cm state



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210031156.q93BuIma022828>