- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- RTS 114 errors.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 09:56 AM
тАО07-17-2001 09:56 AM
Originally our programs were on 'A', compiled with MicroFocus V4.0 B.11.32 and they ran fine. We've since moved the source over to 'B', and compiled with MicroFocus V4.1 B13.40. Nearly all of these programs crash with RTS 114 errors, AKA "Attempt to access item beyond bounds of memory (Signal 10)". If we compile the programs on 'A' and copy the binaries to 'B', they run fine. This is not really an option, though, as 'A' is soon to be retired. The software vendor for our Cobol programs has been attempting to figure what is causing the problem, and is leaning towards a compiler bug. I have attached a snippet showing what the code was that was generating the error and what he did to fix it. The 'before' was perfectly legal syntax, as far as I know (I'm not a Cobol programmer), but the program crashes nevertheless. Is this a known problem? Does anyone have any ideas how we can rectify this situation? The vendor is not willing to go through the hundreds of programs we have to make silly changes.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 10:27 AM
тАО07-17-2001 10:27 AM
Re: RTS 114 errors.
This is pretty vanilla code! I'd check out the Merant (MicroFocus) knowledge base and or escalate with them. There is no reason you should have to re-engineer your code.
http://support.merant.com/websupport/Custom/Knowledge.asp
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 10:28 AM
тАО07-17-2001 10:28 AM
Re: RTS 114 errors.
Do you have any compiler warnings when you compile your code on B.13.40? Don't forget to check and see if you have warnings turned off.
I have some general writeups on RTS 114 errors that I will upload. The documents are either from HP or Merant, I did not write them. Hopefully these will help you diagnose the cause of your RTS problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 10:29 AM
тАО07-17-2001 10:29 AM
Solutioni m realy no a programer but after looking in out database for this error with the version of the cobol install on the system hp-ux 11.00
i can tell you that you are rigth , its the compiler problem .
if you will install this version :
B.11.30, B.12.26, B.13.26, B.12.35, B.13.35
the problem will not acour .
i know also there is a fix for this problem but the best way is to contact your HP support for opening a case with a programer support that will handle the problem .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 10:30 AM
тАО07-17-2001 10:30 AM
Re: RTS 114 errors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 10:42 AM
тАО07-17-2001 10:42 AM
Re: RTS 114 errors.
Our HR system is written in COBOL and uses the same compiler version on 11.0 (13.40) and has multiple statements within one if statement without problem. I normally stay as far away from that COBOL stuff as possible but I did notice that the techical docs for our HR system and all of the makefiles include cob -N "hpoptimize=0" and warn to always use this option.
This sounds just stupid enough to be a workaround for you.
Good luck, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2001 01:39 PM
тАО07-17-2001 01:39 PM
Re: RTS 114 errors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2001 09:54 AM
тАО07-18-2001 09:54 AM
Re: RTS 114 errors.
I'm relaying this information because someone else mentioned compile flags and this problem could be related to compiler flags. I'd suggest reviewing your makefiles and see if there is anything relating to portability, optimization, etc., that might be causing a problem here. Just a hunch though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2001 10:25 AM
тАО07-18-2001 10:25 AM
Re: RTS 114 errors.
Thanks for all responses.