~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/atomic/pthread_traits.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  pthread_mutex_t the_mutex;
32
32
  bool locked;
33
33
public:
34
 
  mutex_wrapper(void): locked(false)
 
34
  mutex_wrapper(void)
 
35
   : the_mutex(),
 
36
     locked(false)
35
37
  {
36
 
    locked= false;
37
38
    (void) pthread_mutex_init(&the_mutex,  NULL);
38
39
  }
39
40
  ~mutex_wrapper(void)