diff --git a/ChangeLog b/ChangeLog index a215e892..0f995406 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +procps-3.1.0 --> procps-3.1.0 + +vmstat displays IO-wait time instead of bogus "w" +can build w/o shared library (set SHARED=0) +when IO-wait hidden, count as idle, not as sys +pmap command added (like Sun has) +do not crash GNU make 3.79 +top slightly faster + procps-3.0.4 --> procps-3.0.5 top tolerates super-wide displays diff --git a/Makefile b/Makefile index 065c4239..6f12fff4 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,10 @@ VERSION := 3 -SUBVERSION := 0 -MINORVERSION := 5 -TARVERSION := 3.0.5 -LIBVERSION := 3.0.5 +SUBVERSION := 1 +MINORVERSION := 0 +TARVERSION := 3.1.0 +LIBVERSION := 3.1.0 ############ vars diff --git a/NEWS b/NEWS index 4cf51b66..0f995406 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -procps-3.0.5 --> procps-3.0.6 +procps-3.1.0 --> procps-3.1.0 vmstat displays IO-wait time instead of bogus "w" can build w/o shared library (set SHARED=0) diff --git a/procps.lsm b/procps.lsm index 54a53ed9..7224325f 100644 --- a/procps.lsm +++ b/procps.lsm @@ -1,15 +1,15 @@ Begin4 Title: procps -Version: 3.0.5 -Entered-date: 2002-10-20 +Version: 3.1.0 +Entered-date: 2002-11-08 Description: Linux system utilities -Keywords: procps /proc libproc sysctl +Keywords: procps /proc libproc sysctl pmap ps uptime tload free w top vmstat watch skill snice kill pgrep pkill Author: Albert Cahalan, Michael K. Johnson, Jim Warner, etc. Maintained-by: various Primary-site: http://procps.sf.net/ - 230kB procps-3.0.5.tar.gz + 230kB procps-3.1.0.tar.gz Alternate-site: http://www.debian.org/Packages/unstable/base/procps.html - 230kB procps-3.0.5.tar.gz + 230kB procps-3.1.0.tar.gz Copying-policy: mixed End diff --git a/procps.spec b/procps.spec index 1595178a..b6b9a650 100644 --- a/procps.spec +++ b/procps.spec @@ -1,8 +1,8 @@ Summary: System and process monitoring utilities Name: procps %define major_version 3 -%define minor_version 0 -%define revision 5 +%define minor_version 1 +%define revision 0 %define version %{major_version}.%{minor_version}.%{revision} Version: %{version} Release: 1 diff --git a/ps/display.c b/ps/display.c index 8a444f6f..7f0fa8c3 100644 --- a/ps/display.c +++ b/ps/display.c @@ -283,7 +283,7 @@ static void prep_forest_sort(void){ } /* we rely on the POSIX requirement for zeroed memory */ -static proc_t *processes[32*1024]; +static proc_t *processes[98*1024]; // FIXME /***** compare function for qsort */ static int compare_two_procs(const void *a, const void *b){