~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_pthread.h

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
 
255
255
int safe_mutex_init(safe_mutex_t *mp, const pthread_mutexattr_t *attr,
256
256
                    const char *file, uint line);
257
 
int safe_mutex_lock(safe_mutex_t *mp, my_bool try_lock, const char *file, uint line);
 
257
int safe_mutex_lock(safe_mutex_t *mp, bool try_lock, const char *file, uint line);
258
258
int safe_mutex_unlock(safe_mutex_t *mp,const char *file, uint line);
259
259
int safe_mutex_destroy(safe_mutex_t *mp,const char *file, uint line);
260
260
int safe_cond_wait(pthread_cond_t *cond, safe_mutex_t *mp,const char *file,
388
388
 
389
389
typedef ulong my_thread_id;
390
390
 
391
 
extern my_bool my_thread_global_init(void);
 
391
extern bool my_thread_global_init(void);
392
392
extern void my_thread_global_end(void);
393
 
extern my_bool my_thread_init(void);
 
393
extern bool my_thread_init(void);
394
394
extern void my_thread_end(void);
395
395
extern const char *my_thread_name(void);
396
396
extern my_thread_id my_thread_dbug_id(void);
420
420
  my_thread_id id;
421
421
  int cmp_length;
422
422
  int volatile abort;
423
 
  my_bool init;
 
423
  bool init;
424
424
  struct st_my_thread_var *next,**prev;
425
425
  void *opt_info;
426
426
#ifndef DBUG_OFF