Segmentation Fault (core dumped)


 
Thread Tools Search this Thread
Operating Systems Solaris Segmentation Fault (core dumped)
# 1  
Old 11-03-2008
Segmentation Fault (core dumped)

i am getting Segmentation Fault (core dumped) on solaris,
but when i run the same program with same input on linux it runs successfully.

How can i trace the fault in program on solaris.
# 2  
Old 11-03-2008
Hi,

does that help?
c0t0d0s0.org - Artikel mit Tag crash

S.
# 3  
Old 11-04-2008
Hi junaid.nehvi , would appreciate if you can show us whats the exact errors you see? errors on the console or maybe those from the /var/adm/messages file?
# 4  
Old 11-04-2008
Re to :incredible

Hi junaid.nehvi , would appreciate if you can show us whats the exact errors you see? errors on the console or maybe those from the /var/adm/messages file?

******************************************
on the screen i get Segmentation Fault (core dumped)
rest i am new to solaris and unix so can't identify the problem....

however i changed some inputs and i didn;t got the error.
# 5  
Old 11-04-2008
hhhmm.. its ok then. Thankx anyway Smilie
# 6  
Old 11-04-2008
Quote:
Originally Posted by junaid.nehvi
How can i trace the fault in program on solaris.
The usual way is to compile your program with the "-g" option and then running it under the control of a debugger.
Alternatively, you can get the crash location by using the pstack command on the generated core file.
# 7  
Old 11-04-2008
After you run the debugger (gdb, for instance) try to generate a "backtrace" ("bt" in gdb) showing the call-frames, including the last function called when the program died. It's probabyl inside a library call that has a different set of arguments than the one in Linux.;
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Find a string across line break (because of "segmentation fault core dumped")

Hi, thanks to a precedent post, and thanks to the reply of derekludwig of the forum, I have convert my first awk command as : test.txt is : AAAAAGHIJKLAjKMEFJKLjklABCDJkLEFGHIJKL awk -f findstring.awk test.txt > textreturn.txtfindstring.awk is : BEGIN{ SLENGTH = 3 } { ... (3 Replies)
Discussion started by: thewizarde6
3 Replies

2. UNIX and Linux Applications

Tilda Segmentation fault (core dumped)

Can anyone tell me why I keep getting a Segmentation fault when I try to run tilda? $ tilda Segmentation fault (core dumped) It seemed to run after I deleted my tilda directory like this thread said to do. Unfortunately it wouldn't let me set my keybinding with anything I tried. ... (0 Replies)
Discussion started by: cokedude
0 Replies

3. Programming

C: Memory Fault (core dumped)

When I run programm show this message: Memory Fault (core dumped) Does anyone can help me and tell me what is wrong? please #include <stdlib.h> #include <stdio.h> #include <process.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> int main(int argc, char *argv) { ... (3 Replies)
Discussion started by: ebasse2
3 Replies

4. UNIX for Advanced & Expert Users

Segmentation Fault/ core dumped in metadb

When I was trying to mirror in my v880 server after OS up gradation from 8 to 10 metadb -afc 3 /dev/dsk/c1t1d0s7 I got an error metadb: Segmentation Fault Segmentation Fault (core dumped) Then I logged a case to Oracle/sun team they suggest "Please could you try metadb -ac 3... (0 Replies)
Discussion started by: taherahmed
0 Replies

5. Programming

getting Segmentation Fault (core dumped) error but Program runs fine.

i am executing following program int main() { char str; FILE * fp; int i=0; ... (4 Replies)
Discussion started by: bhavesh.sapra
4 Replies

6. Red Hat

Segmentation fault (core dumped)

Hi All, I am getting "Segmentation fault (core dumped)" error in the runtime. I am new this please can you tell me why is that i am getting this error and I am not sure of my compilation : gcc -c avc_test.c gcc -c md5.c gcc avc_test.o md5.o -shared -Llibcoreavc_sdk.so -o proj ... (1 Reply)
Discussion started by: fido.genial
1 Replies

7. Solaris

segmentation fault core dumped

i am getting segmentation fault (core dumped) i tried following things but couldn't understand what is wrong with my prog and where the problem is.... i have only adb debugger available on solaris.... so plz help bash-3.00$ pstack core core 'core' of 765: ./mod_generalised_tapinread... (4 Replies)
Discussion started by: junaid.nehvi
4 Replies

8. UNIX for Advanced & Expert Users

Memory Fault - Core Dumped

I use SCO UNIX 5.07 on a Compaq Proliant Machine. Each time I press the Escape or Delete key while running a program or issuing a FoxBase+ command from the dot prompt, I receive the error message: "Memory Fault - Core Dumped" and the screen locks up immediately. I would appreciate if necessary... (0 Replies)
Discussion started by: bayuz
0 Replies

9. Programming

Segmentation Fault (core dumped)

what r the situations to receive an error msg like the one below Segmentation Fault (core dumped) (2 Replies)
Discussion started by: bankpro
2 Replies

10. UNIX for Dummies Questions & Answers

Segmentation fault (core dumped)

Hello To All! Now anfd then I receive a message on my console: Segmentation fault (core dumped) What does it mean? Or more precisely what are the implications? :confused: (1 Reply)
Discussion started by: Ivo
1 Replies
Login or Register to Ask a Question