1
0
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:
kostja@oak.local
2003-08-19 19:55:20 +04:00
parent 36ce7d5fd5
commit 75a3c99c91
11 changed files with 483 additions and 79 deletions

View File

@ -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);
}