~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_pthread.h

  • Committer: Brian Aker
  • Date: 2009-04-06 16:55:13 UTC
  • mfrom: (970.1.5 merge)
  • Revision ID: brian@tangent.org-20090406165513-0r9u2bo1438u970k
Merge refactoring around plugin_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
#endif
152
152
 
153
153
/* Define mutex types, see my_thr_init.c */
154
 
#define MY_MUTEX_INIT_SLOW   NULL
155
 
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
 
154
#ifdef THREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
156
155
extern pthread_mutexattr_t my_fast_mutexattr;
157
156
#define MY_MUTEX_INIT_FAST &my_fast_mutexattr
158
157
#else