Commit b34f4500 authored by unknown's avatar unknown
Browse files

Merge mysql.com:/home/hartmut/projects/mysql/dev/5.0

into  mysql.com:/home/hartmut/projects/mysql/bk-clean/5.1


mysql-test/mysql-test-run.pl:
  Auto merged
storage/ndb/src/kernel/blocks/backup/Backup.cpp:
  Auto merged
parents 0430352b 07919a4d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ Listener_thread::~Listener_thread()

void Listener_thread::run()
{
  int n= 0;
  int i, n= 0;

#ifndef __WIN__
  /* we use this var to check whether we are running on LinuxThreads */
@@ -117,7 +117,7 @@ void Listener_thread::run()
#endif

  /* II. Listen sockets and spawn childs */
  for (int i= 0; i < num_sockets; i++)
  for (i= 0; i < num_sockets; i++)
    n= max(n, sockets[i]);
  n++;

@@ -176,7 +176,7 @@ void Listener_thread::run()

  log_info("Listener_thread::run(): shutdown requested, exiting...");

  for (int i= 0; i < num_sockets; i++)
  for (i= 0; i < num_sockets; i++)
    close(sockets[i]);

#ifndef __WIN__
@@ -189,7 +189,7 @@ void Listener_thread::run()

err:
  // we have to close the ip sockets in case of error
  for (int i= 0; i < num_sockets; i++)
  for (i= 0; i < num_sockets; i++)
    close(sockets[i]);

  thread_registry.unregister_thread(&thread_info);