~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.h

enable remaining subselect tests, merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  a shared library
19
19
*/
20
20
 
21
 
C_MODE_START
22
21
#include <signal.h>
23
22
 
24
23
#define MAX_SIGNALS     10              /* Max signals under a dont-allow */
26
25
#define MAX_KEYBLOCK    8192            /* Max keyblocklength == 8*IO_SIZE */
27
26
#define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
28
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif
 
31
 
29
32
struct st_remember {
30
33
  int number;
31
 
  sig_handler (*func)(int number);
 
34
  RETSIGTYPE (*func)(int number);
32
35
};
33
36
 
34
37
/*
57
60
 
58
61
extern const char *soundex_map;
59
62
 
60
 
extern USED_MEM* my_once_root_block;
61
 
extern uint      my_once_extra;
62
 
 
63
 
extern uchar    *sf_min_adress,*sf_max_adress;
 
63
extern unsigned char    *sf_min_adress,*sf_max_adress;
64
64
extern uint     sf_malloc_count;
65
65
extern struct st_irem *sf_malloc_root;
66
66
 
69
69
extern uint64_t query_performance_frequency, query_performance_offset;
70
70
 
71
71
extern sigset_t my_signals;             /* signals blocked by mf_brkhant */
72
 
C_MODE_END
 
72
 
 
73
#ifdef __cplusplus
 
74
}
 
75
#endif
 
76