1828335 Members
3572 Online
109976 Solutions
New Discussion

Re: Cobol Message error

 
SOLVED
Go to solution
Javier Ortiz Guajardo
Frequent Advisor

Cobol Message error

i?m running a cobol and send this message

Execution error : file 'NRF026B'
error code: 114, pc=0, call=1, seg=0
114 Attempt to access item beyond bounds of memory (Signal 11)

HP/MF COBOL Version: B.13.40
HP-UX mvi900 B.11.00 U 9000/813
pid: 2043 gid: 111 uid: 141
Mon Jun 25 09:01:01 2001
9:01am up 8 mins, 1 user, load average: 1.36, 0.76, 0.37
Thread mode: No Threads
RTS Error: COBOL
Sync Signals: COBOL
ASync Signals: COBOL
cobtidy on exception: False

What can i do to correct this problem
Operative System HP-UX 11.0
Memory 512 MB, 1 processor
1 swap area 1200
2 swap area 2048

Thank you
The obstacles are those things that the people see when they left to see their goals.
5 REPLIES 5
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Cobol Message error

Hi Javier,

Your question is probably better suited to the Languages forum and I'm certainly no COBOL expert nor do I want to be - but here goes.

error code: 114, pc=0, call=1, seg=0
114 Attempt to access item beyond bounds of memory (Signal 11)

Your COBOL program attempted an operation outside of memory boundaries and generated a fatal error. call=1 indicates that the error occurs in a subprogram (0 is the main program).
seg=0 indicates that it is the ROOT segment. pc=0 is the address of the program counter in hex. Normally 0 is a very bad reference and that it probably your problem. You can add the REF Compiler directive to associate the pc to your source program.

Hope this helps, Clay
If it ain't broke, I can fix that.
Herve BRANGIER
Respected Contributor

Re: Cobol Message error

Hi

Don't know cobol but your process receive SIGSEGV signal (11). So it seems to access
outside is "own" memory....

Herve

Javier Ortiz Guajardo
Frequent Advisor

Re: Cobol Message error

Thank you for your opinion, the problem has been corrected in the kernel parameters.
The obstacles are those things that the people see when they left to see their goals.
Bing Wong
Frequent Advisor

Re: Cobol Message error

Javier Ortiz Guajardo,
Can you tell me which kernel parameters you have updated to correct this problem.

Thank you.



Varghese
New Member

Re: Cobol Message error

I have a similar problem to yours, getting the same error. I am trying to delete a record and it gives me this error code. Could you please tell me how did you sort your error.