- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ERROR: mmap failed for dld
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
03-26-2002 02:56 AM
03-26-2002 02:56 AM
ERROR: mmap failed for dld
On a HP-UX 10.20, our C application have crashed. We got a core file.
The result of "what core" :
>> PATCH-PHCO_20441 for 10.20; for 10.30, 11.x compatibility libc.1_ID@@/main/r10dav/libc_dav/libc_dav_cpe/9
>> /ux/core/libs/libc/shared_pa1/libc.1_ID
>> Nov 10 1999 10:53:12
>> SMART_BIND
>> 92453-07 dld dld dld.sl B.10.32 990202
Part of the result of "strings core" :
>>
>> B.10.20
>> 9000/813
>> 2004556739
>> acp.x
>> iceMiceMiceM
>> (@ NpiceM
>> iceM
>> ?PbM
>> ;dZ"@
>> /dev/console
>> proc[1] icode: execve("%F") failed, errno %E
>> Z$Revision: 92453-07 linker linker crt0.o B.10.30 980611 $
>> /usr/lib/dld.sl
>> ERROR: mmap failed for dld
The use of xdb tells us :
- "Procedure : $$dyncall_external"
- "Child died due to: bus error"
There's nothing special in the syslog.log file.
Can you help us ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2002 03:10 AM
03-26-2002 03:10 AM
Re: ERROR: mmap failed for dld
There are many threads about mmap failed here.
Ruediger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2002 03:17 AM
03-26-2002 03:17 AM
Re: ERROR: mmap failed for dld
What you've really got is a 'bus error', which occurs when your program tries to read from a mis-aligned pointer. Basically, its a bug in your code.
First, make sure your application is compiled with -g so that full debug information is available, then get a full stack trace from xdb or some other debugger. That will show you the line of code that caused the core dump.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2002 04:07 AM
03-26-2002 04:07 AM
Re: ERROR: mmap failed for dld
Use
file core
This will tell you what happened.
Please post the output.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2002 04:17 AM
03-26-2002 04:17 AM
Re: ERROR: mmap failed for dld
- 1st file
The result of "file core" : received SIGBUS
xdb : bus error in the procedure $$dyncall_external
- 2nd file
The result of "file core" : received SIGBUS
xdb : bus error in the procedure $$dyncall_external
- 3rd file
The result of "file core" : received SIGSEGV
xdb : segmentation violation in the procedure _msgd
Thanks in advance ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2002 04:55 AM
03-26-2002 04:55 AM
Re: ERROR: mmap failed for dld
Regards,
Trond