~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_syslog/logging_syslog.cc

  • Committer: Brian Aker
  • Date: 2010-01-14 21:28:45 UTC
  • mfrom: (1259.7.6 pandora-build)
  • Revision ID: brian@gaz-20100114212845-189op3q67k2b80rh
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#endif
32
32
 
33
33
#include <stdarg.h>
 
34
#include <limits.h>
 
35
#include <sys/time.h>
 
36
#include <sys/types.h>
 
37
#include <sys/stat.h>
 
38
#include <fcntl.h>
 
39
 
 
40
 
 
41
using namespace drizzled;
34
42
 
35
43
static bool sysvar_logging_syslog_enable= false;
36
44
static char* sysvar_logging_syslog_ident= NULL;
44
52
   until the Session has a good utime "now" we can use
45
53
   will have to use this instead */
46
54
 
47
 
#include <sys/time.h>
48
55
static uint64_t get_microtime()
49
56
{
50
57
#if defined(HAVE_GETHRTIME)