This commit is contained in:
albert 2002-11-09 03:01:35 +00:00
parent 80ec87f55a
commit 5007f548ce
6 changed files with 22 additions and 13 deletions

View File

@ -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 procps-3.0.4 --> procps-3.0.5
top tolerates super-wide displays top tolerates super-wide displays

View File

@ -17,10 +17,10 @@
VERSION := 3 VERSION := 3
SUBVERSION := 0 SUBVERSION := 1
MINORVERSION := 5 MINORVERSION := 0
TARVERSION := 3.0.5 TARVERSION := 3.1.0
LIBVERSION := 3.0.5 LIBVERSION := 3.1.0
############ vars ############ vars

2
NEWS
View File

@ -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" vmstat displays IO-wait time instead of bogus "w"
can build w/o shared library (set SHARED=0) can build w/o shared library (set SHARED=0)

View File

@ -1,15 +1,15 @@
Begin4 Begin4
Title: procps Title: procps
Version: 3.0.5 Version: 3.1.0
Entered-date: 2002-10-20 Entered-date: 2002-11-08
Description: Linux system utilities 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 ps uptime tload free w top vmstat watch skill snice kill pgrep pkill
Author: Albert Cahalan, Michael K. Johnson, Jim Warner, etc. Author: Albert Cahalan, Michael K. Johnson, Jim Warner, etc.
Maintained-by: various <procps-feedback@lists.sf.net> Maintained-by: various <procps-feedback@lists.sf.net>
Primary-site: http://procps.sf.net/ 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 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 Copying-policy: mixed
End End

View File

@ -1,8 +1,8 @@
Summary: System and process monitoring utilities Summary: System and process monitoring utilities
Name: procps Name: procps
%define major_version 3 %define major_version 3
%define minor_version 0 %define minor_version 1
%define revision 5 %define revision 0
%define version %{major_version}.%{minor_version}.%{revision} %define version %{major_version}.%{minor_version}.%{revision}
Version: %{version} Version: %{version}
Release: 1 Release: 1

View File

@ -283,7 +283,7 @@ static void prep_forest_sort(void){
} }
/* we rely on the POSIX requirement for zeroed memory */ /* 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 */ /***** compare function for qsort */
static int compare_two_procs(const void *a, const void *b){ static int compare_two_procs(const void *a, const void *b){