~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.h

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
/*
17
17
  Static variables for mysys library. All definied here for easy making of
18
18
  a shared library
19
19
*/
20
20
 
 
21
#ifndef DRIZZLED_INTERNAL_MY_STATIC_H
 
22
#define DRIZZLED_INTERNAL_MY_STATIC_H
 
23
 
21
24
#include <signal.h>
22
25
 
23
26
#define MAX_SIGNALS     10              /* Max signals under a dont-allow */
25
28
#define MAX_KEYBLOCK    8192            /* Max keyblocklength == 8*IO_SIZE */
26
29
#define MAX_BLOCK_TYPES MAX_KEYBLOCK/MIN_KEYBLOCK
27
30
 
28
 
#ifdef __cplusplus
29
 
extern "C" {
30
 
#endif
31
 
 
32
 
struct st_remember {
33
 
  int number;
34
 
  RETSIGTYPE (*func)(int number);
35
 
};
 
31
namespace drizzled
 
32
{
 
33
namespace internal
 
34
{
36
35
 
37
36
/*
38
37
  Structure that stores information of a allocated memory block
42
41
  boundary.
43
42
*/
44
43
 
45
 
struct st_irem
 
44
class irem
46
45
{
47
 
  struct st_irem *next;         /* Linked list of structures       */
48
 
  struct st_irem *prev;         /* Other link                      */
 
46
public:
 
47
  irem *next;           /* Linked list of structures       */
 
48
  irem *prev;           /* Other link                      */
49
49
  char *filename;               /* File in which memory was new'ed */
50
50
  uint32_t linenum;             /* Line number in above file       */
51
51
  uint32_t datasize;            /* Size requested                  */
52
52
  uint32_t SpecialValue;                /* Underrun marker value           */
 
53
 
 
54
  irem():
 
55
    next(NULL),
 
56
        prev(NULL),
 
57
        filename(0),
 
58
        linenum(0),
 
59
        datasize(0),
 
60
        SpecialValue(0)
 
61
  {}
53
62
};
54
63
 
55
64
 
56
65
extern char curr_dir[FN_REFLEN], home_dir_buff[FN_REFLEN];
57
66
 
58
67
extern volatile int _my_signals;
59
 
extern struct st_remember _my_sig_remember[MAX_SIGNALS];
60
 
 
61
 
extern const char *soundex_map;
62
 
 
63
 
extern USED_MEM* my_once_root_block;
64
 
extern uint      my_once_extra;
65
68
 
66
69
extern unsigned char    *sf_min_adress,*sf_max_adress;
67
70
extern uint     sf_malloc_count;
68
 
extern struct st_irem *sf_malloc_root;
69
 
 
70
 
extern struct st_my_file_info my_file_info_default[MY_NFILE];
 
71
extern class irem *sf_malloc_root;
71
72
 
72
73
extern uint64_t query_performance_frequency, query_performance_offset;
73
74
 
74
75
extern sigset_t my_signals;             /* signals blocked by mf_brkhant */
75
76
 
76
 
#ifdef __cplusplus
77
 
}
78
 
#endif
 
77
} /* namespace internal */
 
78
} /* namespace drizzled */
79
79
 
 
80
#endif /* DRIZZLED_INTERNAL_MY_STATIC_H */