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:
@ -14,11 +14,14 @@
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
||||
|
||||
#pragma once
|
||||
#include "windowsservice.h"
|
||||
#include "WindowsService.h"
|
||||
|
||||
class IMService: public WindowsService
|
||||
{
|
||||
public:
|
||||
static int main();
|
||||
|
||||
private:
|
||||
IMService(void);
|
||||
~IMService(void);
|
||||
|
||||
@ -27,5 +30,3 @@ protected:
|
||||
void Stop();
|
||||
void Run(DWORD argc, LPTSTR *argv);
|
||||
};
|
||||
|
||||
extern int HandleServiceOptions();
|
||||
|
Reference in New Issue
Block a user