12
12
You should have received a copy of the GNU General Public License
13
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17
17
Static variables for mysys library. All definied here for easy making of
21
#ifndef DRIZZLED_INTERNAL_MY_STATIC_H
22
#define DRIZZLED_INTERNAL_MY_STATIC_H
24
22
#include <signal.h>
26
24
#define MAX_SIGNALS 10 /* Max signals under a dont-allow */
28
26
#define MAX_KEYBLOCK 8192 /* Max keyblocklength == 8*IO_SIZE */
29
27
#define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
31
sig_handler (*func)(int number);
37
35
Structure that stores information of a allocated memory block
47
irem *next; /* Linked list of structures */
48
irem *prev; /* Other link */
44
struct st_irem *next; /* Linked list of structures */
45
struct st_irem *prev; /* Other link */
49
46
char *filename; /* File in which memory was new'ed */
50
uint32_t linenum; /* Line number in above file */
51
uint32_t datasize; /* Size requested */
52
uint32_t SpecialValue; /* Underrun marker value */
47
uint32 linenum; /* Line number in above file */
48
uint32 datasize; /* Size requested */
49
uint32 SpecialValue; /* Underrun marker value */
65
53
extern char curr_dir[FN_REFLEN], home_dir_buff[FN_REFLEN];
67
55
extern volatile int _my_signals;
69
extern unsigned char *sf_min_adress,*sf_max_adress;
56
extern struct st_remember _my_sig_remember[MAX_SIGNALS];
58
extern const char *soundex_map;
60
extern USED_MEM* my_once_root_block;
61
extern uint my_once_extra;
63
extern uchar *sf_min_adress,*sf_max_adress;
70
64
extern uint sf_malloc_count;
71
extern class irem *sf_malloc_root;
73
extern uint64_t query_performance_frequency, query_performance_offset;
65
extern struct st_irem *sf_malloc_root;
67
extern struct st_my_file_info my_file_info_default[MY_NFILE];
69
extern ulonglong query_performance_frequency, query_performance_offset;
75
72
extern sigset_t my_signals; /* signals blocked by mf_brkhant */
77
} /* namespace internal */
78
} /* namespace drizzled */
80
#endif /* DRIZZLED_INTERNAL_MY_STATIC_H */