~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pool_of_threads/session_scheduler.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-09 19:18:36 UTC
  • mfrom: (923 drizzle)
  • mto: (934.3.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: osullivan.padraig@gmail.com-20090309191836-ixiam3xa55off3do
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include <mysys/my_list.h>
17
16
#include <event.h>
18
17
 
19
18
class Session;
23
22
public:
24
23
  bool logged_in;
25
24
  struct event io_event;
26
 
  LIST list;
 
25
  Session *session;
27
26
  bool thread_attached;  /* Indicates if Session is attached to the OS thread */
28
27
 
29
28
  session_scheduler(Session *);