home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / admin / tasks.README < prev    next >
Encoding:
Text File  |  1991-07-14  |  1.6 KB  |  52 lines

  1.  
  2.     Here's a program I through together over the weekend.  It is a TOP
  3.     like program that uses the Mach functions to get task and thread
  4.     info.  About 50% of the code was extracted directly from the NeXT
  5.     on-line manuals.  The display is almost exactly like the "ps u"
  6.     display.  The display uses VT control sequences and seems to work 
  7.     under Terminal and Stuart.
  8.     
  9.     Usage is:  "tasks [n]" 
  10.     
  11.     where n is the delay between screen updates (default is 3 seconds).  
  12.     
  13.     NOTE: tasks has to be run by root or setuid to root.
  14.     
  15.     The output isn't sorted in any way it just so happens that the tasks
  16.     get returned in order of increasing PID's.  
  17.     
  18.     This program works on my single user machine but may have problems on
  19.     machines with many running tasks because I do not limit the number of 
  20.     tasks that can be displayed (look at the pigs[] array - it has room
  21.     for 50 entries).  
  22.     
  23.     REFERENCES
  24.     
  25.     To see where I got the info to write this program, look at:
  26.     
  27.     /NextLibrary/Documentation/NextDev/OSSoftware/04_CFunctions
  28.     
  29.         Tasks.rtf
  30.         Threads.rtf
  31.         Hosts.rtf
  32.         
  33.     /usr/incude/sys
  34.         
  35.         task_info.h
  36.         thread_info.h
  37.         table.h
  38.         
  39.         
  40.     BUGS
  41.     
  42.     The TTY column doesn't seem to work.  If anyone fixes this, please
  43.     forward the changes to me.
  44.     
  45.     The info should be sorted by CPU percentage...  I thought of putting
  46.     the info a linked-list of pig_struct's and doing the sorting when adding
  47.     new nodes, with a limit of 10-20 entries...  
  48.     
  49.     The display is an instantaneous snapshot of the CPU state, not an average 
  50.     over the display delay time.  That is why tasks itself will appear to be
  51.     using a lot of CPU - remember that it wasn't running during the delay...
  52.