1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Patch for IM in scope of working on BUG#24415: Instance manager test

im_daemon_life_cycle fails randomly.

1. Move IM-angel functionality into a separate file, create Angel class.
2. Be more verbose;
3. Fix typo in FLUSH INSTANCES implementation;
4. Polishing.
This commit is contained in:
anozdrin/alik@alik.opbmk
2007-02-18 15:45:28 +03:00
parent 3febb266e7
commit f97d10d236
15 changed files with 655 additions and 353 deletions

View File

@ -21,8 +21,6 @@ protected:
bool inited;
const char *serviceName;
const char *displayName;
const char *username;
const char *password;
SERVICE_STATUS_HANDLE statusHandle;
DWORD statusCheckpoint;
SERVICE_STATUS status;
@ -30,7 +28,7 @@ protected:
bool debugging;
public:
WindowsService(void);
WindowsService(const char *p_serviceName, const char *p_displayName);
~WindowsService(void);
BOOL Install();