1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-17 14:41:26 +03:00
mariadb/server-tools/instance-manager
petr/cps@outpost.site 2bc1898bc6 Fix Bug #19044 IM aborts on exit
On windows IM aborted on assert once one
stoppped it. The reason is that we didn't
close the sockets on windows and therefore,
the listener thread wasn't able to finish.
This happened because we used close() call
for it. While on windows one should use
closesocket().
On other platfroms we have appropriate defines
for closesocket(), so this is the function which
should be used.
2006-12-04 19:48:49 +03:00
..
2006-10-20 22:26:40 +04:00
2006-10-20 22:26:40 +04:00
2005-09-13 14:53:19 -05:00
2005-09-13 14:53:19 -05:00
2006-10-20 22:26:40 +04:00
2006-12-04 19:48:49 +03:00
2005-08-05 20:44:52 +02:00
2006-09-01 10:32:12 +02:00
2006-10-20 22:26:40 +04:00
2006-11-20 22:42:06 +02:00
2005-05-16 01:54:02 +04:00
2006-07-22 02:00:33 +02:00
2005-11-02 09:30:01 -06:00
2005-08-29 23:29:35 +04:00
2006-02-10 02:15:55 +03:00

Instance Manager - manage MySQL instances locally and remotely.

File description:
 mysqlmanager.cc - entry point to the manager, main, 
 options.{h,cc} - handle startup options
 manager.{h,cc} - manager process
 mysql_connection.{h,cc} - handle one connection with mysql client.

See also instance manager architecture description in mysqlmanager.cc.