18 Mar, 2013, arholly wrote in the 1st comment:
Votes: 0
I just started getting a new warning this morning and have no idea where it came from and no idea what this means. Can someone help me out and explain what is going on and how I can fix it.

Thanks,
Arholly
Quote
warning: .dynamic section for "/lib/libresolv.so.2" is not at the expected address
warning: difference appears to be caused by prelink, adjusting expectations
Sock.sinaddr: VU022389.valpo.edu
Loading Rayal.
Y[WIZNET] n Rayal@XXXXX.xxxxx.xxxx has connected.
Detaching after fork from child process 26013.

Program received signal SIGINT, Interrupt.
0x002057f2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
(gdb) bt
#0 0x002057f2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
#1 0x0047a09d in ___newselect_nocancel () from /lib/libc.so.6
#2 0x0809ddc7 in game_loop_unix (control=8) at comm.c:1119
#3 0x0809d5bf in main (argc=2, argv=0xbfffd854) at comm.c:655
(gdb) bt
#0 0x002057f2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
#1 0x0047a09d in ___newselect_nocancel () from /lib/libc.so.6
#2 0x0809ddc7 in game_loop_unix (control=8) at comm.c:1119
#3 0x0809d5bf in main (argc=2, argv=0xbfffd854) at comm.c:655
(gdb) list
582
583 purgeExtractedWorldData();
584 log_string("Project Twilight has completed its cleanup procedure and may now shutdown.");
585 return;
586 }
587
588 int main( int argc, char **argv )
589 {
590 struct timeval now_time;
591 bool fCopyOver = FALSE;
(gdb) info locals
No symbol table info available.
(gdb) info local
No symbol table info available.
(gdb) frame 1
#1 0x0047a09d in ___newselect_nocancel () from /lib/libc.so.6
(gdb) list
592
593 /*
594 * Init time.
595 */
596 gettimeofday( &now_time, NULL );
597 current_time = (time_t) now_time.tv_sec;
598 strncpy( str_boot_time, ctime( &current_time ), sizeof(str_boot_time));
599
600 /*
601 * Reserve one channel for our use.
(gdb) info local
No symbol table info available.
(gdb) frame 2
#2 0x0809ddc7 in game_loop_unix (control=8) at comm.c:1119
1119 if ( select( 0, NULL, NULL, NULL, &stall_time ) < 0 )
(gdb) list
1114 {
1115 struct timeval stall_time;
1116
1117 stall_time.tv_usec = usecDelta;
1118 stall_time.tv_sec = secDelta;
1119 if ( select( 0, NULL, NULL, NULL, &stall_time ) < 0 )
1120 {
1121 perror( "Game_loop: select: stall" );
1122 exit( 1 );
1123 }
(gdb) info local
stall_time = {tv_sec = 0, tv_usec = 14000}
now_time = {tv_sec = 1363620337, tv_usec = 728923}
secDelta = 0
usecDelta = 249975
in_set = {__fds_bits = {0 <repeats 512 times>}}
out_set = {__fds_bits = {512, 0 <repeats 511 times>}}
exc_set = {__fds_bits = {0 <repeats 512 times>}}
maxdesc = 9
d = 0x0
last_time = {tv_sec = 1363620337, tv_usec = 728898}
null_time = {tv_sec = 0, tv_usec = 0}
(gdb) frame 3
#3 0x0809d5bf in main (argc=2, argv=0xbfffd854) at comm.c:655
655 game_loop_unix( control );
(gdb) list
650 log_to_file(logfile, GLOBAL_XML_IN, "Project Twilight restarted.");
651 /*
652 if(fCopyOver)
653 copyover_recover();
654 */
655 game_loop_unix( control );
656 /* shutdown_web(); */
657
658 cleanup_mud(control);
659
(gdb) info local
now_time = {tv_sec = 1363620280, tv_usec = 290402}
fCopyOver = 1 '\001'
18 Mar, 2013, arholly wrote in the 2nd comment:
Votes: 0
Figured it out. Thanks.
0.0/2