1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00
Files
mariadb/server-tools/instance-manager
unknown 29bcffd77e BUG#24687 func_misc test fails on win64
- Use same precision (milliseconds) for all time functions
   used  when calculating time for pthread_cond_timedwait
 - Use 'GetSystemTimeAsFileTime' for both start and curr time


include/config-win.h:
  Move all defines for 'pthread_cond_timedwait' to my_pthread.h
include/my_global.h:
  Move all defines for 'pthread_cond_timedwait' to my_pthread.h
include/my_pthread.h:
  Redefine "struct timespec" to better suite the needs 
  of 'pthread_cond_timedwait' for windows implementation
  Add windows specific define for set_timespec_nsec
  Move all defines related to pthread_cond_timed wait to same file
  Declare union for reading FILETIME as __int64 with correct alignment
mysys/my_wincond.c:
  Use 'GetSystemTimeAsFileTime()' both for getting start and current time
  Use new members of "struct timespec"
  Make sure the calculated timeout value never exceeds the value
  passed to set_timespec/set_timespec_nsec
server-tools/instance-manager/guardian.cc:
  Use set_timespec macro
server-tools/instance-manager/instance.cc:
  Use set_timespec macro
2006-12-14 15:23:44 +01: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
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-11-30 21:56:03 +02: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.