mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
First implementation for signal handling and multi-threading:
safe shutdown and signal deliverence to all threads in the manager process
This commit is contained in:
@ -14,16 +14,16 @@
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
#include "options.h"
|
||||
|
||||
#include <my_global.h>
|
||||
#include <my_sys.h>
|
||||
#include <my_getopt.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma implementation
|
||||
#endif
|
||||
|
||||
|
||||
#define QUOTE2(x) #x
|
||||
#define QUOTE(x) QUOTE2(x)
|
||||
@ -121,7 +121,3 @@ void Options::load(int argc, char **argv)
|
||||
exit(rc);
|
||||
}
|
||||
|
||||
void init_mysys_library(const char *progname)
|
||||
{
|
||||
MY_INIT((char *) progname);
|
||||
}
|
||||
|
Reference in New Issue
Block a user