~skinny.moey/drizzle/bug755201

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.cc

  • Committer: Lee Bieber
  • Date: 2011-03-28 18:11:45 UTC
  • mfrom: (2254.1.2 build)
  • Revision ID: kalebral@gmail.com-20110328181145-tfsb6s5ozhuvhfoq
Merge Patrick - Tweaked dbqp so that the existing slave tests work.
Merge Stewart - remove over 1000 lines of mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
     home_dir_buff[FN_REFLEN]= {0};
42
42
DRIZZLED_API int my_umask=0664;
43
43
int my_umask_dir=0777;
44
 
uint32_t   my_file_limit= MY_NFILE;
45
44
 
46
45
        /* From mf_brkhant */
47
46
int my_dont_interrupt=0;
51
50
        /* from mf_reccache.c */
52
51
uint32_t my_default_record_cache_size=RECORD_CACHE_SIZE;
53
52
 
54
 
        /* from soundex.c */
55
 
                                /* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
56
 
                                /* :::::::::::::::::::::::::: */
57
 
const char *soundex_map=          "01230120022455012623010202";
58
 
 
59
 
        /* from safe_malloc */
60
 
uint32_t sf_malloc_prehunc=0,           /* If you have problem with core- */
61
 
     sf_malloc_endhunc=0,               /* dump when malloc-message.... */
62
 
                                        /* set theese to 64 or 128  */
63
 
     sf_malloc_quick=0;                 /* set if no calls to sanity */
64
 
uint32_t sf_malloc_cur_memory= 0L;              /* Current memory usage */
65
 
uint32_t sf_malloc_max_memory= 0L;              /* Maximum memory usage */
66
 
uint32_t  sf_malloc_count= 0;           /* Number of times NEW() was called */
67
 
unsigned char *sf_min_adress= (unsigned char*) ~(unsigned long) 0L,
68
 
     *sf_max_adress= (unsigned char*) 0L;
69
 
/* Root of the linked list of struct st_irem */
70
 
irem *sf_malloc_root = NULL;
71
 
 
72
53
        /* from my_alarm */
73
54
int volatile my_have_got_alarm=0;       /* declare variable to reset */
74
55
uint32_t my_time_to_wait_for_lock=2;    /* In seconds */
77
58
bool my_disable_async_io= true;
78
59
bool my_disable_flush_key_blocks=0;
79
60
bool my_disable_symlinks=0;
80
 
bool mysys_uses_curses=0;
81
61
 
82
62
} /* namespace internal */
83
63
} /* namespace drizzled */