~prafulla-t/drizzle/drz-fast-timer-and-time-profile-refactoring

« back to all changes in this revision

Viewing changes to drizzled/internal/my_pthread.h

  • Committer: Prafulla Tekawade
  • Date: 2010-08-22 06:26:33 UTC
  • mfrom: (1685.40.6 staging)
  • Revision ID: prafulla_t@users.sourceforge.net-20100822062633-rda0zeuhg6nhyyom
MergeĀ fromĀ trunk

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 */