]> granicus.if.org Git - procps-ng/commitdiff
crossed the Rubicon, and no, it wasn't fun
authoralbert <>
Sun, 6 Oct 2002 21:34:17 +0000 (21:34 +0000)
committeralbert <>
Sun, 6 Oct 2002 21:34:17 +0000 (21:34 +0000)
12 files changed:
AUTHORS
BUGS
free.1
kill.1
procps.lsm
skill.1
tload.1
top.1
top.c
top.h
uptime.1
w.1

diff --git a/AUTHORS b/AUTHORS
index 3e47666b1fc8e9f126018a4bc9181aba9a612823..dd2ad4fcd87de619434795dc6e6b99fd1557b32b 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,10 +8,10 @@ Michael K. Johnson <johnsonm@redhat.com>
 Michael Shields <mjshield@nyx.cs.du.edu>
 Charles Blake <cblake@bbn.com>
 David Mossberger-Tang
-Albert Cahalan <acahalan@cs.uml.edu>
+Albert Cahalan <albert@users.sf.net>
 
 skill/kill/snice:
-Albert Cahalan <acahalan@cs.uml.edu>
+Albert Cahalan <albert@users.sf.net>
 
 tload:
 Branko Lankester
diff --git a/BUGS b/BUGS
index df7ced42fd42149afa6a0ffe483bed5de320b620..12643407a992472f6f73fd5546400346f7bf8c71 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -9,16 +9,21 @@ documentation!
 
 Where to send
 =============
-Send comments, bug reports, patches, etc., to acahalan@cs.uml.edu
+Send comments, bug reports, patches, etc., to albert@users.sf.net
 
 
 What to send
 ============
-It is much more useful to me if a program really crases to recompile it
+It is much more useful to me if a program really crashes to recompile it
 with make "CC=gcc -ggdb -O", run it with "gdb prog" and "run" and send
 me a stack trace ('bt' command).  That said, any bug report is still
 better than none.
 
+strace and ltrace output are very helpful:
+
+        strace -o output-file ps --blah
+        bzip2 output-file
+
 It might be nice to get rid of miscellaneous compiler warnings, but
 don't bend over backwards to do it.
 
@@ -33,29 +38,20 @@ code was compiled.
 
 A macro is provide in libproc/version.h to construct the code from its
 components, e.g.
-  if (linux_version_code < LINUX_VERSION(1,1,30))
-     /* tty field is only a minor */
+  if (linux_version_code < LINUX_VERSION(2,5,41))
+     /* blah blah blah */
 A startup call to set_linux_version may also be necessary.
 
 Of course, if a bug is due to a change in kernel file formats, it would
 be best to first try to generalize the parsing, since the code is then
 more resilient against future change.
 
-If you send me patches which are specific to *compiling* on a particular
-version of Linux include a "#if LINUX_VERSION_CODE > 1*0x10000+3*0x100+54"
-markup of the patch so that the package may be compiled with older
-kernels as well as the "latest and greatest".  LINUX_VERSION_CODE is
-#define'd in <linux/version.h>.
-
-Note that you should not make patches specific to *compiling* on a
-particular version of Linux unless there is nothing else you can do.
-
 Also unified diffs (diff -u) are my preference, context diffs (diff -c )
 are kind of usable, and standard diffs (diff) are more useless than a
 generic text description of what you did.  Just use
-       diff -u oldfile newfile
+       diff -Naurd oldfile newfile
 or
-       diff -Naur old-procps-dir new-procps-dir
+       diff -Naurd old-procps-dir new-procps-dir
 to create your diffs and you will make me happy.  Also make sure to
 include a description of what the diff is for or I'm likely to ignore
 it because of general lack of time...
@@ -63,12 +59,8 @@ it because of general lack of time...
 
 Code Structure
 ==============
-My ultimate goal for this package is to be compilable with any kernel
-headers and to be able to run under any kernel's /proc.  (Don't bother
-telling me that I'm not especially close to my ultimate goal... who
-is? :-)
 
-Anyhow, another goal is to encapsulate *all* parsing dependent on /proc
+A goal is to encapsulate *all* parsing dependent on /proc
 file formats into the libproc library.  If the API is general enough
 it can hopefully stabilize and then /proc changes might only require
 updating libproc.so.  Beyond that having the set of utilities be simple
diff --git a/free.1 b/free.1
index f33b8d10316aca73ba416599671834398f8f55af..cc690041fa2be59df84d21ab365ce1eaa5f83a1b 100644 (file)
--- a/free.1
+++ b/free.1
@@ -41,5 +41,5 @@ The \fB\-V\fP displays version information.
 .SH AUTHORS
 Written by Brian Edmonds. 
 
-Send bug reports to <acahalan@cs.uml.edu>
+Send bug reports to <albert@users.sf.net>
 
diff --git a/kill.1 b/kill.1
index f6870b8bbcf6a4fd0a2355e3867bdf20671c192a..a2b8df6900ae1f7c9fcf412e621960349eeb927b 100644 (file)
--- a/kill.1
+++ b/kill.1
@@ -90,8 +90,8 @@ top(1) skill(1) kill(2) renice(1) nice(1)
 This command meets appropriate standards. The -L flag is Linux-specific.
 
 .SH AUTHOR
-Albert Cahalan <acahalan@cs.uml.edu> wrote kill in 1999 to replace the
+Albert Cahalan <albert@users.sf.net> wrote kill in 1999 to replace the
 version that was not standards compliant. Michael K. Johnson
 <johnsonm@redhat.com> is the current maintainer of the procps collection.
 
-Please send bug reports to <acahalan@cs.uml.edu>
+Please send bug reports to <albert@users.sf.net>
index 0d4e9ae9993b798ab231c27783739d1ab0c29fdc..9adc6992e11f07e76d77cde2d655856f3b150206 100644 (file)
@@ -7,7 +7,7 @@ Description: Procps is a library which parses the textual /proc filesystem
 Keywords: procps /proc libproc
        ps uptime tload free w top vmstat watch skill snice kill pgrep pkill
 Author: Michael K. Johnson, Charles Blake, Albert Cahalan, many others.
-Maintained-by: various <acahalan@cs.uml.edu>
+Maintained-by: various <albert@users.sf.net>
 Primary-site: http://procps.sf.net/
        185kB procps-3.0.0.tar.gz
 Alternate-site: http://www.debian.org/Packages/unstable/base/procps.html
diff --git a/skill.1 b/skill.1
index 5703954501db56d996d8d601beca1f109b7f5ac6..590faeafe71f47c6bd54984f9629383a9fc3f27e 100644 (file)
--- a/skill.1
+++ b/skill.1
@@ -112,8 +112,6 @@ top(1) kill(1) renice(1) nice(1)
 No standards apply.
 
 .SH AUTHOR
-Albert Cahalan <acahalan@cs.uml.edu> wrote skill and snice in 1999 as a
-replacement for a non-free version. Michael K. Johnson <johnsonm@redhat.com>
-is the current maintainer of the procps collection.
-
-Please send bug reports to <acahalan@cs.uml.edu>
+Albert Cahalan <albert@users.sf.net> wrote skill and snice in 1999 as a
+replacement for a non-free version, and is the current maintainer of the
+procps collection. Please send bug reports to <albert@users.sf.net>
diff --git a/tload.1 b/tload.1
index aec34dd4d225127e374615b7048185d7b1be1132..ef82b01808cfc62e449f2d15099345228bbc5606 100644 (file)
--- a/tload.1
+++ b/tload.1
@@ -47,4 +47,4 @@ and update the display.
 Branko Lankester, David Engel <david@ods.com>, and 
 Michael K. Johnson <johnsonm@redhat.com>.
 
-Please send bug reports to <acahalan@cs.uml.edu>
+Please send bug reports to <albert@users.sf.net>
diff --git a/top.1 b/top.1
index 51a5dff411f1177dfc3522b33b7b7bc390aa1b1e..52238a36ebf5dbeff702c9089966abb94065da04 100644 (file)
--- a/top.1
+++ b/top.1
@@ -1902,7 +1902,7 @@ them ol' bug-bytes (sic-sic)!
 Bugs?  What bugs?  But, if ever there were, then...
 
 Please send bug reports to:
-   Albert D\. Cahalan, <acahalan@cs.uml.edu>
+   Albert D\. Cahalan, <albert@users.sf.net>
 
 [ thanks Albert, heaven forbid author should be bothered ]
 
@@ -1934,7 +1934,7 @@ This entirely new and enhanced replacement was written by:
 
 With invaluable help from:
    Craig Small, <csmall@small.dropbear.id.au>
-   Albert D\. Cahalan, <acahalan@cs.uml.edu>
+   Albert D\. Cahalan, <albert@users.sf.net>
 
 .ig
 .rj 2
diff --git a/top.c b/top.c
index 2e4aa9ffb0ab05500ddb3eb853109187c3ceaaff..797b0418a1c549e4b351a16a94d8e1ffd90ea9b9 100644 (file)
--- a/top.c
+++ b/top.c
@@ -15,7 +15,7 @@
  */
 /* For their contributions to this program, the author wishes to thank:
  *    Craig Small, <csmall@small.dropbear.id.au>
- *    Albert D. Cahalan, <acahalan@cs.uml.edu>
+ *    Albert D. Cahalan, <albert@users.sf.net>
  */
 #include <sys/ioctl.h>
 #include <sys/resource.h>
diff --git a/top.h b/top.h
index 9967ae5b051043ddeb053bba6ce4710ad109d0b2..49fc86e0b181525dbe8c3946786c92d62ff61883 100644 (file)
--- a/top.h
+++ b/top.h
@@ -15,7 +15,7 @@
  */
 /* For their contributions to this program, the author wishes to thank:
  *    Craig Small, <csmall@small.dropbear.id.au>
- *    Albert D. Cahalan, <acahalan@cs.uml.edu>
+ *    Albert D. Cahalan, <albert@users.sf.net>
  */
 #ifndef _Itop
 #define _Itop
index ecb4e70bf7ea839c0b2fd518f4bbaac60b4f382a..3aae739fb74a9c8436f0c3f09693b31f4474760e 100644 (file)
--- a/uptime.1
+++ b/uptime.1
@@ -26,7 +26,7 @@ This is the same information contained in the header line displayed by
 was written by Larry Greenfield <greenfie@gauss.rutgers.edu> and
 Michael K. Johnson <johnsonm@sunsite.unc.edu>.
 
-Please send bug reports to <acahalan@cs.uml.edu>
+Please send bug reports to <albert@users.sf.net>
 .SH "SEE ALSO"
 .BR ps (1),
 .BR top (1),
diff --git a/w.1 b/w.1
index 647d55efaf661c493877473ab47a133eca1a0d19..d8a32c01d11663f8df6edadc7f283c740ff8f1f8 100644 (file)
--- a/w.1
+++ b/w.1
@@ -81,4 +81,4 @@ was re-written almost entirely by Charles Blake, based on the version by Larry
 Greenfield <greenfie@gauss.rutgers.edu> and Michael K. Johnson
 <johnsonm@redhat.com>.
 
-Please send bug reports to <acahalan@cs.uml.edu>
+Please send bug reports to <albert@users.sf.net>