Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Great MISTERY, what does this mean? (hp error)

Status
Not open for further replies.

Lim

Programmer
Aug 15, 2000
192
US
Ok, I got htis error on HP-UX 11, from make file:
--------------
Pid 2692 receive aSGSEGV or stac gothfilre.
Posiecaue: nsufcit meoyor saspac,
or tacszeexcededmaxsi.
--------------

What is that?????? Some kind of slang?

 
One more.
Pid 9389 rceived a SISEGV fo sack grow faire.
ossibe aue: isfcet eory o swap space,
or stac size exceeded assiz.
Memory fault(coredump)

Looks like something really broken.
Any idea what can it be?
This is happanning on two different HP-UX 11 boxes.

 
Hi, it seems you have a process which is a big stack memory consumer. It receives the signal SIGSEGV. This means your process has broken up the RLIMIT_STACK value.

Extract from getrlimit command man:

RLIMIT_STACK This is the maximum size of a process stack
in bytes. The implementation will not
automatically grow the stack beyond this
limit. If this limit is exceeded, SIGSEGV is
generated for the process. If the process is
blocking or ignoring SIGSEGV, or is catching
SIGSEGV and has not made arrangements to use
an alternate stack, the disposition of
SIGSEGV will be set to SIG_DFL before it is
generated

Philippe
 
Yep,
It was broken make on HP. If I am building in deep directory (a lot of subdirectories) what is common for java modules and I have suffix rules it brakes make.
I used workaround calling "make -r" to ignore suffix rulles.
I even installed lates make patch - did not helped.
Thnaks.
 
But how we can known the value of RLIMIT_STACK. I hope it does not have some to do with java as i m C++ programmer. Yaa, i tried maxdsize and maxssize on HP UX kernel parameters for the same problem. Here i think we need to look at swap space parameter also.
Rakesh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top