~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_pthread.h

  • Committer: Vijay Samuel
  • Date: 2010-08-20 02:23:54 UTC
  • mfrom: (1720.1.4 build)
  • mto: (1726.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1727.
  • Revision ID: vijay@vijay-20100820022354-sxunltk8q3nb8ld2
Merge removed the drizzled/option.h include from client_priv.h and archive_reader.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
*/
114
114
#define DEFAULT_THREAD_STACK    (256*INT32_C(1024))
115
115
 
116
 
/*
117
 
  Keep track of shutdown,signal, and main threads so that my_end() will not
118
 
  report errors with them
119
 
*/
120
 
 
121
 
/* Which kind of thread library is in use */
122
 
 
123
 
#define THD_LIB_OTHER 1
124
 
#define THD_LIB_NPTL  2
125
 
#define THD_LIB_LT    4
126
 
 
127
 
extern uint32_t thd_lib_detected;
128
 
 
129
116
} /* namespace internal */
130
117
} /* namespace drizzled */
131
118