~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000 MySQL AB
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
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
/*
17
  Static variables for mysys library. All definied here for easy making of
18
  a shared library
19
*/
20
994.2.4 by Monty Taylor
Blast. Fixed some make distcheck issues.
21
#include "mysys/mysys_priv.h"
202.3.6 by Monty Taylor
First pass at gettexizing the error messages.
22
#include <mysys/mysys_err.h>
1 by brian
clean slate
23
#include "my_static.h"
612.2.6 by Monty Taylor
OpenSolaris builds.
24
#include <stdlib.h>
1 by brian
clean slate
25
146 by Brian Aker
my_bool cleanup.
26
bool timed_mutexes= 0;
1 by brian
clean slate
27
28
	/* from my_init */
29
char *	home_dir=0;
30
const char      *my_progname=0;
31
char curr_dir[FN_REFLEN]= {0},
32
     home_dir_buff[FN_REFLEN]= {0};
298 by Brian Aker
ulong conversion.
33
uint32_t		my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0;
34
uint32_t           my_file_total_opened= 0;
1 by brian
clean slate
35
int my_umask=0664, my_umask_dir=0777;
482 by Brian Aker
Remove uint.
36
uint32_t   my_file_limit= MY_NFILE;
1 by brian
clean slate
37
38
	/* From mf_brkhant */
39
int my_dont_interrupt=0;
40
volatile int		_my_signals=0;
41
struct st_remember _my_sig_remember[MAX_SIGNALS]={{0,0}};
42
sigset_t my_signals;			/* signals blocked by mf_brkhant */
43
44
	/* from mf_reccache.c */
298 by Brian Aker
ulong conversion.
45
uint32_t my_default_record_cache_size=RECORD_CACHE_SIZE;
1 by brian
clean slate
46
47
	/* from soundex.c */
48
				/* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
49
				/* :::::::::::::::::::::::::: */
50
const char *soundex_map=	  "01230120022455012623010202";
51
52
	/* from safe_malloc */
482 by Brian Aker
Remove uint.
53
uint32_t sf_malloc_prehunc=0,		/* If you have problem with core- */
1 by brian
clean slate
54
     sf_malloc_endhunc=0,		/* dump when malloc-message.... */
55
					/* set theese to 64 or 128  */
56
     sf_malloc_quick=0;			/* set if no calls to sanity */
298 by Brian Aker
ulong conversion.
57
uint32_t sf_malloc_cur_memory= 0L;		/* Current memory usage */
58
uint32_t sf_malloc_max_memory= 0L;		/* Maximum memory usage */
482 by Brian Aker
Remove uint.
59
uint32_t  sf_malloc_count= 0;		/* Number of times NEW() was called */
481 by Brian Aker
Remove all of uchar.
60
unsigned char *sf_min_adress= (unsigned char*) ~(unsigned long) 0L,
61
     *sf_max_adress= (unsigned char*) 0L;
1 by brian
clean slate
62
/* Root of the linked list of struct st_irem */
63
struct st_irem *sf_malloc_root = NULL;
64
65
	/* from my_alarm */
66
int volatile my_have_got_alarm=0;	/* declare variable to reset */
298 by Brian Aker
ulong conversion.
67
uint32_t my_time_to_wait_for_lock=2;	/* In seconds */
1 by brian
clean slate
68
69
	/* from errors.c */
632.1.11 by Monty Taylor
Fixed Sun Studio warnings in mysys.
70
void_ptr_int_func my_abort_hook= (void_ptr_int_func)exit;
779.1.19 by Monty Taylor
Removed stuff that gcov showed we weren't using.
71
error_handler_func error_handler_hook= NULL;
1 by brian
clean slate
72
73
	/* How to disable options */
909 by Brian Aker
Remove the need for unireg init
74
bool my_disable_async_io= true;
146 by Brian Aker
my_bool cleanup.
75
bool my_disable_flush_key_blocks=0;
76
bool my_disable_symlinks=0;
77
bool mysys_uses_curses=0;