~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_pthread.h

  • Committer: Brian Aker
  • Date: 2010-08-18 16:12:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818161258-1vm71da888dfvwsx
Remove the code surrounding stack trace.

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