~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#pragma once
 
16
#ifndef PLUGIN_MULTI_THREAD_MULTI_THREAD_H
 
17
#define PLUGIN_MULTI_THREAD_MULTI_THREAD_H
17
18
 
18
19
#include <drizzled/atomics.h>
19
20
#include <drizzled/gettext.h>
20
21
#include <drizzled/error.h>
21
22
#include <drizzled/plugin/scheduler.h>
22
 
#include <drizzled/internal/my_sys.h>
 
23
#include "drizzled/internal/my_sys.h"
23
24
#include <drizzled/sql_parse.h>
24
25
#include <string>
25
26
 
 
27
namespace drizzled {
 
28
class Session;
 
29
}
 
30
 
26
31
namespace multi_thread {
27
32
 
28
33
class MultiThreadScheduler: public drizzled::plugin::Scheduler
50
55
 
51
56
} // namespace multi_thread
52
57
 
 
58
#endif /* PLUGIN_MULTI_THREAD_MULTI_THREAD_H */