Unix utility to monitor process usage and system statistics in a terminal window.
Warning: For general use, top must have suid status for the file's owner, root, which could be a security problem for some sites.
KNOWN PROBLEMS AND FIXES:
NEXTSTEP - v0.3 2/15/96 tpugh
This release fixes the problems in release v0.2.
1) Command name not showing in the display. This problem occurs for hppa and sparc machines, and NS4.0 alpha machines. NeXT changed the task structure, so top could not find utask structure which contains the command name. <mach/task.h> is not shipped with any NEXTSTEP systems.
2) Removed all C++ style comments from machine.c to be ANSI C compatible.
3) Removed the %WCPU field, no support for it.
4) Reduced line length to less than 80 columns. Some commands are long and will extend beyond 80 colums.
5) Fixed "top -U" fails with bus error. In special cases where only a specific user is displayed, the process index variable was being improperly advanced, resulting in zero process address values and bus errors.
6) Eliminated the text artifact in the command column.
NEXTSTEP - v0.2 9/1/95 tpugh
This release fixes two problems.
1) new processes were not showing up in the display.
2) compiling problems. The compiler flags are now correctly inserted into the makefile without user action. Continue to use the Configure script to setup and install the software. When it asks for compiler flags, use the defaults listed.
NEXTSTEP - v0.1 8/2/95 tpugh
This is the first release for NEXTSTEP, so beware. It's working nicely on my NeXTstation Turbo Color running NEXTSTEP v3.2.
Please let me know of any problem so we can fix them. Let me know if it works.
Tim Pugh
Oregon State University
tpugh@oce.orst.edu
COMPATIBILITY - next32
This is the machine-dependent module for NEXTSTEP v3.x
Reported to work for NEXTSTEP v3.0, v3.2, and v3.3 Mach OS:
NEXTSTEP v3.0 on Motorola machines.
NEXTSTEP v3.2 on Intel and Motorola machines.
NEXTSTEP v3.3 on Intel and Motorola machines.
Problem with command column for (Choose next40 for fix):
NEXTSTEP v3.2 on HP machines.
NEXTSTEP v3.3 on HP and Sparc machines.
Has not been tested for NEXTSTEP v2.x machines, although it should work.
Has not been tested for NEXTSTEP v3.1 machines, although it should work.
COMPATIBILITY - next40
This is the machine-dependent module for NEXTSTEP v3.x/4.x
Reported to work for:
NEXTSTEP v3.2 on HP machines.
NEXTSTEP v3.3 on HP and Sparc machines.
Has not been tested for NEXTSTEP v4.0 machines, although it should work.
FREQUENTLY ASKED QUESTIONS
#1: top 3.3 (after configuring for next32 with all defaults) on my i386 running NEXTSTEP 3.3, I get: Error calling task_by_unix_pid(): failure(5)
The call is failing because you do not have permission. You must be the superuser, root, or the program must have root privledges to work properly. It's been reported that setting the group sticky bit for kmem does not work, and the fix is to set the user sticky bit for root. So install "top" with the permissions 4755.
As root, do the following:
tsunami# chown root.kmem top
tsunami# chmod 4755 top
tsunami# ls -lg top
-rwsr-xr-x 1 root kmem 121408 Sep 1 10:14 top*
With the kmem group sticky bit set, we can read kernal memory without problems, but to communicate with the Mach kernal for task and thread info, it requires root privileges.
#2: How to compile top to create a multiple binary file or FAT?