~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.c

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
*/
20
20
 
21
21
#include "mysys_priv.h"
 
22
#include <mysys/mysys_err.h>
22
23
#include "my_static.h"
23
24
 
24
25
bool timed_mutexes= 0;
28
29
const char      *my_progname=0;
29
30
char curr_dir[FN_REFLEN]= {0},
30
31
     home_dir_buff[FN_REFLEN]= {0};
31
 
ulong           my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0;
32
 
ulong           my_file_total_opened= 0;
 
32
uint32_t                my_stream_opened=0,my_file_opened=0, my_tmp_file_created=0;
 
33
uint32_t           my_file_total_opened= 0;
33
34
int my_umask=0664, my_umask_dir=0777;
34
35
struct st_my_file_info my_file_info_default[MY_NFILE]= {{0,UNOPEN}};
35
36
uint   my_file_limit= MY_NFILE;
42
43
sigset_t my_signals;                    /* signals blocked by mf_brkhant */
43
44
 
44
45
        /* from mf_reccache.c */
45
 
ulong my_default_record_cache_size=RECORD_CACHE_SIZE;
 
46
uint32_t my_default_record_cache_size=RECORD_CACHE_SIZE;
46
47
 
47
48
        /* from soundex.c */
48
49
                                /* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
58
59
     sf_malloc_endhunc=0,               /* dump when malloc-message.... */
59
60
                                        /* set theese to 64 or 128  */
60
61
     sf_malloc_quick=0;                 /* set if no calls to sanity */
61
 
ulong sf_malloc_cur_memory= 0L;         /* Current memory usage */
62
 
ulong sf_malloc_max_memory= 0L;         /* Maximum memory usage */
 
62
uint32_t sf_malloc_cur_memory= 0L;              /* Current memory usage */
 
63
uint32_t sf_malloc_max_memory= 0L;              /* Maximum memory usage */
63
64
uint  sf_malloc_count= 0;               /* Number of times NEW() was called */
64
65
uchar *sf_min_adress= (uchar*) ~(unsigned long) 0L,
65
66
     *sf_max_adress= (uchar*) 0L;
68
69
 
69
70
        /* from my_alarm */
70
71
int volatile my_have_got_alarm=0;       /* declare variable to reset */
71
 
ulong my_time_to_wait_for_lock=2;       /* In seconds */
 
72
uint32_t my_time_to_wait_for_lock=2;    /* In seconds */
72
73
 
73
74
        /* from errors.c */
74
 
#ifdef SHARED_LIBRARY
75
 
char * globerrs[GLOBERRS];              /* my_error_messages is here */
76
 
#endif
77
75
void (*my_abort_hook)(int) = (void(*)(int)) exit;
78
76
void (*error_handler_hook)(uint error,const char *str,myf MyFlags)=
79
77
    my_message_no_curses;