signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac
# 1  
Old 03-12-2008
signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac

When i run a program in sun solaris i got core dumped with an error message as follows...


signal SEGV (no mapping at the fault address) in _malloc_unlocked at 0xfe1d44ac
0xfe1d44ac: _malloc_unlocked+0x022c: ld [%o1 + 8], %o3
Current function is GetEDBInfo
360 EXEC SQL
(dbx) where
[1] _malloc_unlocked(0x48, 0xe1a, 0xb1428, 0xfe23a054, 0x95ed0, 0x0), at 0xfe1d44ac
[2] malloc(0x48, 0x1, 0x94078, 0xfe1d4270, 0xfe268298, 0xfe2709b8), at 0xfe1d4264
[3] sqlalc(0xff32a2e4, 0x34, 0x0, 0x8f8b8, 0x65713d3a, 0x48), at 0xfe532928
[4] sqlcopybnd(0xff32a2e4, 0xfed60, 0xff388, 0xfef18, 0x1, 0xff388), at 0xfe5548b8
[5] sqlrbd(0x1, 0xfed60, 0xff388, 0xfef18, 0x1, 0xffbfa54e), at 0xfe554cf8
[6] sqlatm(0xff32a2e4, 0xfed60, 0xfef18, 0xffbfa78c, 0x1, 0x1), at 0xfe555734
[7] sqlnst(0xff32a2e4, 0xfed60, 0x17844, 0xff148, 0x4, 0x0), at 0xfe5430d8
[8] sqlcmex(0x118, 0xffbfa720, 0xffbfa78c, 0x3, 0x0, 0xfed60), at 0xfe535e38
[9] sqlcxt(0x0, 0x2853c, 0xffbfa78c, 0x178b2, 0x1, 0x80808080), at 0xfe53624c
=>[10] GetEDBInfo(), line 360 in "elgpm152.sc"
[11] gatherData(rptFd = 3), line 255 in "elgpm152.sc"
[12] main(argc = 2, argv = 0xffbfaa34), line 199 in "elgpm152.sc"


Can anybody tell me where I am wrong..?
It happends in a sql select query...
Any input on this is apretiated....!!!!!

Last edited by noufal; 03-12-2008 at 06:11 PM.. Reason: Message correcting
# 2  
Old 03-13-2008
The problem is not sql it is one of the variables you declared and passed into sql as a bound variable. Without code I can't begin to say what the exact problem variable is.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Signal SEGV (no mapping at the fault address) in _memcpy at 0xff0b07c0

Hi, I am unable to copy the cursor value into character variable which is defined in nested structure by pointer. typedef struct aaa { unsigned char device_type; unsigned char encrypt; unsigned short rec_len; } ABC; typedef ABC *Pabc; typedef struct def { ABC... (9 Replies)
Discussion started by: gthangav
9 Replies

2. Shell Programming and Scripting

Creating unique mapping from multiple mapping

Hello, I do not know if this is the right title to use. I have a large dictionary database which has the following structure: where a b c d e are in English and p q r s t are in a target language., the two separated by the delimiter =. What I am looking for is a perl script which will take... (5 Replies)
Discussion started by: gimley
5 Replies

3. Red Hat

Help needed 'Segv'

Red Hat Enterprise 4.5 (32 bit) In strace we see "unexpected reloc type 0x38" What does that code 0x38 mean? mprotect(0x59a000, 42229760, PROT_READ|PROT_WRITE) = 0 writev(2, unexpected reloc type 0x38", 26}, {"", 0}, {"", 0}, {"\n", 1}], 1 0) = 113 exit_group(127) ... (6 Replies)
Discussion started by: Sunusernewbie
6 Replies

4. UNIX for Dummies Questions & Answers

signal SEGV (no mapping at the fault address)

Hello i ve got the following error on a C servor. signal SEGV (no mapping at the fault address) when running in dbx program terminated by signal SEGV (no mapping at the fault address) 0xff1d5cb4: srch_dir+0x0154: cmp %o1, %o0 Current function is _log 533 ... (4 Replies)
Discussion started by: mumuri
4 Replies

5. UNIX for Dummies Questions & Answers

Help with HUP and SEGV.

Hello - I need to know the detail of HUP and SEGV. I know HUP is Hangup and can be use to kill a Unix login session remotely by sending a hangup signal to the process running the login session. Could someone tell me in detail prupose of HUP and SEGV (segmentation violation)? I need to... (1 Reply)
Discussion started by: namasteall2000
1 Replies

6. UNIX for Dummies Questions & Answers

Panic kernal-mode address fault on user address 0x14

:) Firstly Hi all!!, im NEW!! and on here hoping that someone might be able to offer me some help... i have a server that keeps crashing every few days with the error message: PANIC KERNAL-MODE ADDRESS FAULT ON USER ADDRESS 0X14 KERNAL PAGE FAULT FROM (CS:EIP)=(100:EF71B5BD) EAX=EF822000... (10 Replies)
Discussion started by: Twix
10 Replies

7. Programming

segmantation Fault error SEGV_MAPERR - Address not mapped to object

Program received signal SIGSEGV, Segmentation fault si_code: 1 - SEGV_MAPERR - Address not mapped to object. 0x9fffffffbe7080d0:0 in free+0xb0 () from /usr/lib/hpux64/libc.so.1 Hi , I have developed a class to read config file (flat file with space as a field seperator ) on plattform... (3 Replies)
Discussion started by: pravinbhingare
3 Replies

8. Programming

Program received signal SIGSEGV, Segmentation fault.

Dear all, I used debugger from C++ and these are the message I got: Program received signal SIGSEGV, Segmentation fault. 0x00323fc0 in free () from /lib/tls/libc.so.6 (gdb) info s #0 0x00323fc0 in free () from /lib/tls/libc.so.6 #1 0x00794fa1 in operator delete () from... (5 Replies)
Discussion started by: napapanbkk
5 Replies
Login or Register to Ask a Question