1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Give better error from reconnect()

Fixed hang in start_slave_threads() when thread dies quickly.
This commit is contained in:
monty@mashka.mysql.fi
2002-08-24 05:44:16 +03:00
parent 3b81549d93
commit 04723cf74d
10 changed files with 102 additions and 72 deletions

View File

@@ -12,7 +12,7 @@ $opt_f= 0;
$opt_t= 0;
$opt_a = "";
$BSD = -f '/vmunix' || $ENV{"OS"} eq "SunOS4";
$BSD = -f '/vmunix' || $ENV{"OS"} eq "SunOS4" || $^O eq 'darwin';
$LINUX = $^O eq 'linux';
$pscmd = $BSD ? "/bin/ps -auxww" : $LINUX ? "/bin/ps axuw" : "/bin/ps -ef";