~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_pthread.h

  • Committer: Brian Aker
  • Date: 2008-12-06 02:02:19 UTC
  • Revision ID: brian@tangent.org-20081206020219-61o4ij7tsms6qwna
First major pass through new replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
#endif
89
89
#endif
90
90
 
91
 
#if !defined(HAVE_PTHREAD_ATTR_SETSCOPE)
92
 
#define pthread_attr_setscope(A,B)
93
 
#endif
94
 
 
95
 
#if defined(HAVE_BROKEN_PTHREAD_COND_TIMEDWAIT)
96
 
extern int my_pthread_cond_timedwait(pthread_cond_t *cond,
97
 
                                     pthread_mutex_t *mutex,
98
 
                                     struct timespec *abstime);
99
 
#define pthread_cond_timedwait(A,B,C) my_pthread_cond_timedwait((A),(B),(C))
100
 
#endif
101
 
 
102
91
#define HAVE_PTHREAD_KILL
103
92
 
104
93
#if !defined(HAVE_PTHREAD_YIELD_ONE_ARG) && !defined(HAVE_PTHREAD_YIELD_ZERO_ARG)