- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SIGSEGV 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
Forums
Discussions
Discussions
Discussions
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
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
08-29-2002 04:22 AM
08-29-2002 04:22 AM
SIGSEGV Errors
identification division of a COBOL source being incorrect, for example, the words
IDENTIFICATION DIVISION missing or the PROGRAM-ID clause not matching the
source filename?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2002 04:44 AM
08-29-2002 04:44 AM
Re: SIGSEGV Errors
I guess what I'm saying is that I'm not too clear on your issue?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2002 04:55 AM
08-29-2002 04:55 AM
Re: SIGSEGV Errors
A previous similar error was giving these messages but was resolved by rectifying the Cobol stuff I originally mentioned.
I was just wondering if it was a common issue that someone else may have heard of.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2002 05:05 AM
08-29-2002 05:05 AM
Re: SIGSEGV Errors
Have a look at maxfiles.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2002 05:35 AM
08-29-2002 05:35 AM
Re: SIGSEGV Errors
All relevant kernel parameters have already been checked and amended where necessary but the core files still get generated with a SIGSEGV error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2002 12:24 AM
08-30-2002 12:24 AM
Re: SIGSEGV Errors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2002 02:50 AM
08-30-2002 02:50 AM
Re: SIGSEGV Errors
Does it dump a core file?
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2002 03:19 AM
08-30-2002 03:19 AM
Re: SIGSEGV Errors
SIGSEGV is a segmentation violation caused by a program trying to access memory outside of it's allocation.
Of the errors you mention, no ID DIVISION would not compile, the PROGRAM-ID does not have to match the sourcefile name but it is prudent to keep them the same.
Try checking that items in the LINKAGE SECTION are the same size in all sourcefiles and that the USING statement in all call/called sourcefiles have the data-names in the same sequence.
Other potential, but less common causes are the use of pointers that get initialised to an 'out of bounds' value and the EXTERNAL clause.
Hope this helps
Chris