~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_gearman/logging_gearman.cc

  • Committer: Monty Taylor
  • Date: 2010-01-13 08:18:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1268.
  • Revision ID: mordred@inaugust.com-20100113081849-m4jc2jlzwrmsnhwk
Fixed namespace and include issues in some plugins we hadn't been building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/session.h>
24
24
 
25
25
#include <libgearman/gearman.h>
 
26
#include <limits.h>
 
27
#include <sys/time.h>
 
28
#include <sys/types.h>
 
29
#include <sys/stat.h>
 
30
#include <fcntl.h>
 
31
 
 
32
 
 
33
using namespace drizzled;
26
34
 
27
35
 
28
36
/* TODO make this dynamic as needed */
37
45
   until the Session has a good utime "now" we can use
38
46
   will have to use this instead */
39
47
 
40
 
#include <sys/time.h>
41
48
static uint64_t get_microtime()
42
49
{
43
50
#if defined(HAVE_GETHRTIME)