Sponsored Content
Operating Systems Linux Debian Linux, Debian - Segmentation Fault problem. Post 302881778 by Arson. on Wednesday 1st of January 2014 07:51:23 AM
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..
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. Programming

segmentation fault

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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
GET_KERNEL_SYMS(2)					       Linux Module Support						GET_KERNEL_SYMS(2)

NAME
get_kernel_syms - retrieve exported kernel and module symbols SYNOPSIS
#include <linux/module.h> int get_kernel_syms(struct kernel_sym *table); DESCRIPTION
If table is NULL, get_kernel_syms returns the number of symbols available for query. Otherwise it fills in a table of structures: struct kernel_sym { unsigned long value; char name[60]; }; The symbols are interspersed with magic symbols of the form #module-name with the kernel having an empty name. The value associated with a symbol of this form is the address at which the module is loaded. The symbols exported from each module follow their magic module tag and the modules are returned in the reverse order they were loaded. RETURN VALUE
Returns the number of symbols returned. There is no possible error return. SEE ALSO
create_module(2), init_module(2), delete_module(2), query_module(2). BUGS
There is no way to indicate the size of the buffer allocated for table. If symbols have been added to the kernel since the program queried for the symbol table size, memory will be corrupted. The length of exported symbol names is limited to 59. Because of these limitations, this system call is deprecated in favor of query_module. Linux 26 Dec 1996 GET_KERNEL_SYMS(2)
All times are GMT -4. The time now is 10:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy