~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.h

  • Committer: Monty Taylor
  • Date: 2008-09-23 06:09:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923060948-pec1d5wxetf84tte
Cleaned up stuff out of global.h.

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
34
  sig_handler (*func)(int number);
69
72
extern uint64_t query_performance_frequency, query_performance_offset;
70
73
 
71
74
extern sigset_t my_signals;             /* signals blocked by mf_brkhant */
72
 
C_MODE_END
 
75
 
 
76
#ifdef __cplusplus
 
77
}
 
78
#endif
 
79