home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / unix / aix / 13106 < prev    next >
Encoding:
Text File  |  1993-01-07  |  1.4 KB  |  35 lines

  1. Newsgroups: comp.unix.aix
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sample.eng.ohio-state.edu!purdue!mentor.cc.purdue.edu!mace.cc.purdue.edu!abe
  3. From: abe@mace.cc.purdue.edu (Vic Abell)
  4. Subject: Re: AIX system process limits
  5. Message-ID: <C0I252.9C2@mentor.cc.purdue.edu>
  6. Sender: news@mentor.cc.purdue.edu (USENET News)
  7. Organization: Purdue University
  8. References: <C0DIIu.6x8@unixhub.SLAC.Stanford.EDU> <C0FFoE.MD0@unixhub.SLAC.Stanford.EDU>
  9. Date: Thu, 7 Jan 1993 19:58:13 GMT
  10. Lines: 23
  11.  
  12. In article <C0FFoE.MD0@unixhub.SLAC.Stanford.EDU>, joann@ariadne.SLAC.Stanford.EDU (Jo Ann Malina) writes:
  13. > Thanks to several people for their replies along these lines. I'm
  14. > afraid I haven't made myself clear.  Finding out and changing the
  15. > number of processes allowed per user is trivial on AIX. The lsattr
  16. > command will tell you; smit will both display it and let you change it.
  17. > Finding out how many total processes may run on the system at once
  18. > is not trivial. Does anyone understand where this value is stored,
  19. > or if calculated, how?
  20.  
  21. The value is probably stored in a var structure in kernel space (see
  22. <sys/var.h>).  One should be able to read it via knlist, probably from
  23. the symbol "v".
  24.  
  25. The maximum process count element of v is v_proc.  The comments in
  26. <sys/var.h> say it's one of
  27.  
  28.     /* the following variables are statically defined by the kernel
  29.        at kernel compile time
  30.      */
  31.  
  32. So I doubt that you can change it with smit or any other magic command.
  33.