1846588 Members
2438 Online
110256 Solutions
New Discussion

Memory usage per process

 
SOLVED
Go to solution
Yu Zhen
Occasional Advisor

Memory usage per process

Could you tell me which parameter in HPUX kernel control the memory used per process? or there isn't such a parameter at all?
2 REPLIES 2
James Murtagh
Honored Contributor
Solution

Re: Memory usage per process

Hi,

There are a few parameters which control the virtual memory limits, related to 32 and 64 bit processes.

Private to process:

maxtsiz - 32bit text quadrant
mattsiz_64bit - 64bit text

maxdsiz - 32bit data quadrant
matdsiz_64bit - 64bit data

maxssiz - 32bit stack quadrant
matssiz_64bit - 64bit stack

Global:

shmmax - size of maximum shared memory segment

If you are using the posix shell you may find some of these limits are set differently, use "ulimit -a" to find out.

Regards,

James.
U.SivaKumar_2
Honored Contributor

Re: Memory usage per process

Hi,

To increase the memory allowed for a single process, Increase kernel parameters maxdsiz, maxtsiz and maxssiz . The values depends on the amount of RAM and swap space you have.

you can do this thru SAM.

regards,
U.SivaKumar

Innovations are made when conventions are broken