Comment 12 for bug 397912

Revision history for this message
Stewart Smith (stewart) wrote :

(gdb) bt
#0 0xb7f70424 in __kernel_vsyscall ()
#1 0xb7bd67a6 in nanosleep () from /lib/tls/i686/cmov/libc.so.6
#2 0xb7bd65be in sleep () from /lib/tls/i686/cmov/libc.so.6
#3 0x080e95fd in ListenHandler::bindAll (this=0xbfa8ab48, host=0x0,
    bind_timeout=100) at listen.cc:185
#4 0x08056744 in main (argc=12, argv=0x28ff1eb3) at drizzled.cc:1598
(gdb) up
#1 0xb7bd67a6 in nanosleep () from /lib/tls/i686/cmov/libc.so.6
(gdb)
#2 0xb7bd65be in sleep () from /lib/tls/i686/cmov/libc.so.6
(gdb)
#3 0x080e95fd in ListenHandler::bindAll (this=0xbfa8ab48, host=0x0,
    bind_timeout=100) at listen.cc:185
185 sleep(this_wait);
(gdb) list
180 }
181
182 errmsg_printf(ERRMSG_LVL_INFO, _("Retrying bind() on %u"),
183 (*it)->getPort());
184 this_wait= retry * retry / 3 + 1;
185 sleep(this_wait);
186 }
187
188 if (ret < 0)
189 {
(gdb) c

at the same time, in another screen, "netstat -t tcp -l -p" was showing the port bound, but with no process against it... :/