~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/thread_var.h

  • Committer: Brian Aker
  • Date: 2010-10-07 23:23:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1834.
  • Revision ID: brian@tangent.org-20101007232314-287jvyp1mplmx52k
Move to boost condition_any

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
struct st_my_thread_var
37
37
{
38
 
  boost::condition_variable suspend;
 
38
  boost::condition_variable_any suspend;
39
39
  boost::mutex mutex;
40
40
  boost::mutex * volatile current_mutex;
41
 
  boost::condition_variable * volatile current_cond;
 
41
  boost::condition_variable_any * volatile current_cond;
42
42
  pthread_t pthread_self;
43
43
  uint64_t id;
44
44
  int volatile abort;