~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_scheduling.h

  • Committer: Brian Aker
  • Date: 2009-02-09 02:50:21 UTC
  • Revision ID: brian@tangent.org-20090209025021-84e62awsk93tiuva
Fix for error when thread/whatever can not be created on connection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  bool is_used;
29
29
  uint32_t max_threads;
30
30
  bool (*init_new_connection_thread)(void);
31
 
  void (*add_connection)(Session *session);
 
31
  bool (*add_connection)(Session *session);
32
32
  void (*post_kill_notification)(Session *session);
33
33
  bool (*end_thread)(Session *session, bool cache_thread);
34
34
} scheduling_st;