~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

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
 
int my_dont_interrupt=0;
48
46
volatile int            _my_signals=0;
49
47
sigset_t my_signals;                    /* signals blocked by mf_brkhant */
50
48
 
51
49
        /* from mf_reccache.c */
52
50
uint32_t my_default_record_cache_size=RECORD_CACHE_SIZE;
53
51
 
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
52
        /* from my_alarm */
73
53
int volatile my_have_got_alarm=0;       /* declare variable to reset */
74
54
uint32_t my_time_to_wait_for_lock=2;    /* In seconds */
75
55
 
76
56
        /* How to disable options */
77
 
bool my_disable_async_io= true;
78
 
bool my_disable_flush_key_blocks=0;
79
57
bool my_disable_symlinks=0;
80
 
bool mysys_uses_curses=0;
81
58
 
82
59
} /* namespace internal */
83
60
} /* namespace drizzled */