Operating System - HP-UX
1752714 Members
5853 Online
108789 Solutions
New Discussion юеВ

Re: maxssiz and maxssiz_64bit

 
aruns_s
Frequent Advisor

maxssiz and maxssiz_64bit

Hi,

Just got confused with following two tunables.
maxssiz and maxssiz_64bit.

If my system is running on 64bit processor, is
maxssiz irrelavant?

2 REPLIES 2

Re: maxssiz and maxssiz_64bit

No, maxssiz still applies to any processes that are still 32-bit, of which there are plenty.

HTH

Duncan

I am an HPE Employee
Accept or Kudo
A. Clay Stephenson
Acclaimed Contributor

Re: maxssiz and maxssiz_64bit

... and in general don't go nuts on setting these guys to large values even in 64-bit land.

For 32-bit applications, 32MiB is sufficient and 64MiB is extremely generous. For 64-bit applications, 128MiB is more than generous. When a software developer requests a large stack that is almost a big red flag that you have purchased bad code. Well written code uses dynamically allocated memory that does not come from the stack. The stack should really only be used for local variables. Heavily recursive code might need larger stacks but the vast majority of code needs only a small stack (< 32MiB).

If it ain't broke, I can fix that.