~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_pthread.h

  • Committer: Monty Taylor
  • Date: 2010-08-21 00:40:40 UTC
  • mfrom: (1723.1.11 build)
  • Revision ID: mordred@inaugust.com-20100821004040-udj7wpfxtj0rgak1
Rollup of small patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
 
108
108
/* All thread specific variables are in the following struct */
109
109
 
110
 
/*
111
 
  Drizzle can survive with 32K, but some glibc libraries require > 128K stack
112
 
  to resolve hostnames. Also recursive stored procedures needs stack.
113
 
*/
114
 
#define DEFAULT_THREAD_STACK    (256*INT32_C(1024))
 
110
/**
 
111
  A default thread stack size of zero means that we are going to use
 
112
  the OS defined thread stack size (this varies from OS to OS).
 
113
 */
 
114
#define DEFAULT_THREAD_STACK    0
115
115
 
116
116
} /* namespace internal */
117
117
} /* namespace drizzled */