Linux, Debian - Segmentation Fault problem.

 
Thread Tools Search this Thread
Operating Systems Linux Debian Linux, Debian - Segmentation Fault problem.
# 1  
Old 01-01-2014
Linux, Debian - Segmentation Fault problem.

Hi guys, first of all apologize for my English...
I have a big problem with "Segmentation fault", when running my game server.

Console:

Quote:
> Data parsing time: 0.28 seconds.
> Houses synchronization time: 0.081 seconds.
> Content unserialization time: 0.511 seconds.
>> Checking world type... PvP-Enforced
>> Initializing game state modules and registering services...
[New Thread 0x7ffff362e700 (LWP 17723)]
> Global address: *******
> Local ports: 7171 7172
>> All modules were loaded, server is starting up...
> Logging output to file: data/logs/out.log
> Logging errors to file: data/logs/error.log

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ffff485c700 (LWP 17720)]
0x0000000000000000 in ?? ()
(gdb)
Code:
(gdb)  bt full
#0  0x0000000000000000 in ?? ()
No symbol table info available.
#1  0x00007ffff702aca4 in std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, long) ()
   from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
No symbol table info available.
#2  0x000000000047523a in ?? ()
No symbol table info available.
#3  0x00007ffff485bcf0 in ?? ()
No symbol table info available.
#4  0x00007ffff65641a0 in ?? () from /lib/x86_64-linux-gnu/libpthread.so.0
No symbol table info available.
#5  0x00007fffec001040 in ?? ()
No symbol table info available.
#6  0x00007ffff680bf8a in gettimeofday ()
    at ../sysdeps/unix/sysv/linux/x86_64/gettimeofday.S:37
No locals.
#7  0x00007ffff680ea65 in ftime (timebuf=0x7fffec000a00)
    at ../sysdeps/unix/bsd/ftime.c:29
        tv = {tv_sec = 1388582648, tv_usec = 571292}
        tz = {tz_minuteswest = -335541760, tz_dsttime = 32767}
#8  0x000000000082ed60 in ?? ()


I have no idea what the problem is...Help me Please.

Last edited by Arson.; 01-01-2014 at 09:25 AM..
# 2  
Old 01-18-2014
What application are you getting this output from? Is this from something you wrote? Regardless, it looks like this program was compiled without debugging enabled.

Code:
No symbol table info available.

I'm not a GDB expert, but if this is the case you may need to recompile with --ggdb (considering its written in C).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

C. To segmentation fault or not to segmentation fault, that is the question.

Oddities with gcc, 2.95.3 for the AMIGA and 4.2.1 for MY current OSX 10.14.1... I am creating a basic calculator for the AMIGA ADE *NIX emulator in C as it does not have one. Below are two very condensed snippets of which I have added the results inside the each code section. IMPORTANT!... (11 Replies)
Discussion started by: wisecracker
11 Replies

2. Programming

Segmentation fault

I keep getting this fault on a lot of the codes I write, I'm not exactly sure why so I'd really appreciate it if someone could explain the idea to me. For example this code #include <stdio.h> main() { unsigned long a=0; unsigned long b=0; int z; { printf("Enter two... (2 Replies)
Discussion started by: sizzler786
2 Replies

3. Solaris

Segmentation fault

Hi Guys, I just installed and booted a zone called testzone. When I logged in remotely and tried changing to root user I get this error: "Segmentation fault" Can someone please help me resolve this? Thanks alot (2 Replies)
Discussion started by: cjashu
2 Replies

4. Programming

Using gdb, ignore beginning segmentation fault until reproduce environment segmentation fault

I use a binary name (ie polo) it gets some parameter , so for debugging normally i do this : i wrote script for watchdog my app (polo) and check every second if it's not running then start it , the problem is , if my app , remain in state of segmentation fault for a while (ie 15 ... (6 Replies)
Discussion started by: pooyair
6 Replies

5. Shell Programming and Scripting

Segmentation fault in Unix shell (linux OS)

Hi, I am trying to run an online downloaded tool but I am having an eror segmentation fault. ./multicoil test.seq Config file /home/kmohanas/MULTICOIL/multicoil_config window length 0 = 28 window length 1 = 28 multi_lib = 3 4 5 multi_lib = 2 3 4 pair_lib = 1 2 4 printfile =... (6 Replies)
Discussion started by: kaav06
6 Replies

6. UNIX for Dummies Questions & Answers

Segmentation fault

#include<stdio.h> #include<malloc.h> #include<unistd.h> #include<stdlib.h> void *start_1(void *argv) { printf("thread 0x%x\n",(unsigned int)pthread_self()); pthread_exit((void*)1); } void *start_2(void *argv) { printf("thread 0x%x\n",(unsigned int)pthread_self()); return (void*)2; }... (2 Replies)
Discussion started by: vincent__tse
2 Replies

7. UNIX for Advanced & Expert Users

segmentation fault with ps

What does this mean and why is this happening? $ ps -ef | grep ocular Segmentation fault (core dumped) $ ps -ef | grep ocular Segmentation fault (core dumped) $ ps aux | grep ocular Segmentation fault (core dumped) $ ps Segmentation fault (core dumped) $ pkill okular $ ps... (1 Reply)
Discussion started by: cokedude
1 Replies

8. Programming

segmentation fault

What is segmentation fault(core dumped) (1 Reply)
Discussion started by: gokult
1 Replies

9. Red Hat

Segmentation fault on basic linux commands

Hello out there!!! I have a Red Hat Entreprise Linux 4 server and I am encountering this error # grep Segmentation Fault I know it is not the right use of grep command, but I did that just for testing purpose,then I did # which grep /bin/grep # ls -l /bin/grep -rwxr-xr-x 1 root... (4 Replies)
Discussion started by: inhaki
4 Replies

10. Programming

segmentation fault

hi all i'm trying to execute a c program under linux RH and it gives me segmentation fault, this program was running under unix at&t anybody kow what the problem could be? thanx in advance regards (2 Replies)
Discussion started by: omran
2 Replies
Login or Register to Ask a Question