home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume23 / sps2 / part03 / globals1.c < prev    next >
C/C++ Source or Header  |  1991-01-08  |  945b  |  32 lines

  1. # ifndef lint
  2. static char SccsId[] =  "@(#)globals1.c    1.1\t10/1/88" ;
  3. # endif
  4.  
  5. # include       "sps.h"
  6. # include       "flags.h"
  7. # ifdef KVM
  8. # include       <kvm.h>
  9. # endif
  10.  
  11. /* Read/Write Variables global to the code of sps */
  12.  
  13. struct info                     Info ;          /* Information structure */
  14.  
  15. struct flags                    Flg ;           /* Flag options */
  16.  
  17. struct summary                  Summary ;       /* Summary of processes */
  18.  
  19. union  userstate                User ;          /* Upage of one process */
  20.  
  21. # ifdef KVM
  22. kvm_t                          *Flkvm ;         /* Kernel VM descriptor */
  23. # else
  24. int                             Flmem, Flkmem, Flswap ; /* File descriptors */
  25. # endif
  26.  
  27. unsigned                        Termwidth ;     /* Width of output device */
  28.  
  29. short                           Lastpgrp ;      /* Last process pgrp printed */
  30.  
  31. short                           Lastuid ;       /* Last process uid printed */
  32.