- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: signal 11, Segmentation fault
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
10-07-2002 12:22 AM
10-07-2002 12:22 AM
signal 11, Segmentation fault
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2002 12:27 AM
10-07-2002 12:27 AM
Re: signal 11, Segmentation fault
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2002 01:44 AM
10-07-2002 01:44 AM
Re: signal 11, Segmentation fault
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2002 01:54 AM
10-07-2002 01:54 AM
Re: signal 11, Segmentation fault
maxdsiz-64bit = 2566914048
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2002 05:29 AM
10-07-2002 05:29 AM
Re: signal 11, Segmentation fault
IBS_CLARIFY = -L$(CLEARAPI)/libs -l:clearzpi.a -lmny4s -ltls4s -lCsup -lC -lstream
But when I changed this order for this other I solved my problems:
LIBS_CLARIFY = -L$(CLEARAPI)/libs -l:clearzpi.a -lmny4s -ltls4s -lCsup -lstd -lstream -lcl
I can't explain but now all the batch work without problems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 04:39 AM
10-15-2002 04:39 AM
Re: signal 11, Segmentation fault
You can use gdb like that:
$gdb -xdb -tui a.out
for starting a debugger using TUI ( Terminal User Interface ), so you can see a default terminal screen size of 24 by 80 chars, this termainal is divided into 2 windows, a source window at the top and a command window at the bottom.
It's very easy to see where your script go with SIGSEGV
after :
$b main
$run
a right angle bracket ( > ) points to the current location
After
$n ( For next )
And you follow a " > " where it's stop, so you can see which instruction is invalid
You can see assembler version with
$la asm
and source version with
$la src
Hope it's help
Regard