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
top tolerates super-wide displays

View File

@ -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

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"
can build w/o shared library (set SHARED=0)

View File

@ -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 <procps-feedback@lists.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
230kB procps-3.0.5.tar.gz
230kB procps-3.1.0.tar.gz
Copying-policy: mixed
End

View File

@ -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

View File

@ -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){