30.03.2012, 12:47
On linux use this to run server with GDB and it will generate a crash.log file that you can post here and have the problem resolved:
Save as runserver.sh & use ./runserver.sh to run the server so it will run using debugger and output useful information about the crash.
Quote:
echo 0 | gdb -batch-silent -ex "run" -ex "set logging overwrite on" -ex "set logging file gdb.bt" -ex "set logging on" -ex "set pagination off" -ex "handle SIG33 pass nostop noprint" -ex "echo backtrace:\n" -ex "backtrace full" -ex "echo \n\nregisters:\n" -ex "info registers" -ex "echo \n\ncurrent instructions:\n" -ex "x/16i \$pc" -ex "echo \n\nthreads backtrace:\n" -ex "thread apply all backtrace" -ex "set logging off" -ex "quit" samp03svr date >> crash.log cat gdb.bt >> crash.log |