MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
init.cc
Go to the documentation of this file.
1 /* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2 
3  This program is free software; you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation; version 2 of the License.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program; if not, write to the Free Software Foundation,
14  51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
15 
16 
24 #include "sql_priv.h"
25 #include "init.h"
26 #include "my_sys.h"
27 #include "mysqld.h" // abort_loop, ...
28 #include "my_time.h" // my_init_time
29 #include "unireg.h" // SPECIAL_SAME_DB_NAME
30 #include <m_ctype.h>
31 
32 void unireg_init(ulong options)
33 {
34  DBUG_ENTER("unireg_init");
35 
36  error_handler_hook = my_message_stderr;
37  abort_loop=0;
38 
39  my_disable_async_io=1; /* aioread is only in shared library */
40  wild_many='%'; wild_one='_'; wild_prefix='\\'; /* Change to sql syntax */
41 
42  current_pid=(ulong) getpid(); /* Save for later ref */
43  my_init_time(); /* Init time-functions (read zone) */
44 #ifndef EMBEDDED_LIBRARY
45  my_abort_hook=unireg_abort; /* Abort with close of databases */
46 #endif
47 
48  (void) strmov(reg_ext,".frm");
49  reg_ext_length= 4;
50  specialflag=SPECIAL_SAME_DB_NAME | options; /* Set options from argv */
51  DBUG_VOID_RETURN;
52 }