~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_manager.cc

Removed/replaced BUG symbols and standardized TRUE/FALSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  bool reset_flush_time = true;
69
69
  struct handler_cb *cb= NULL;
70
70
  my_thread_init();
71
 
  DBUG_ENTER("handle_manager");
72
71
 
73
72
  pthread_detach_this_thread();
74
73
  manager_thread = pthread_self();
121
120
      my_free((uchar*)cb, MYF(0));
122
121
      cb= next;
123
122
    }
124
 
 
125
 
    if (status)
126
 
      DBUG_PRINT("error", ("manager did not handle something: %lx", status));
127
123
  }
128
124
  manager_thread_in_use = 0;
129
125
  my_thread_end();
130
 
  DBUG_RETURN(NULL);
 
126
  return(NULL);
131
127
}