~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.cc

  • Committer: Lee Bieber
  • Date: 2010-11-14 23:15:42 UTC
  • mfrom: (1929.1.42 warning-stack-frame)
  • Revision ID: kalebral@gmail.com-20101114231542-fnnu6ydd2p17n582
Merge Monty - fix bug 672372: some functions use > 32k stack

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "my_static.h"
26
26
#include <stdlib.h>
27
27
 
28
 
#include "drizzled/visibility.h"
29
 
 
30
28
namespace drizzled
31
29
{
32
30
namespace internal
39
37
const char      *my_progname=0;
40
38
char curr_dir[FN_REFLEN]= {0},
41
39
     home_dir_buff[FN_REFLEN]= {0};
42
 
DRIZZLED_API int my_umask=0664;
43
 
int my_umask_dir=0777;
 
40
int my_umask=0664, my_umask_dir=0777;
44
41
uint32_t   my_file_limit= MY_NFILE;
45
42
 
46
43
        /* From mf_brkhant */