~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_sys.h

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
#include <errno.h>
33
33
 
34
 
#include <drizzled/internal/my_pthread.h>
 
34
#include "drizzled/internal/my_pthread.h"
35
35
 
36
 
#include <drizzled/charset_info.h>                    /* for CHARSET_INFO */
 
36
#include "drizzled/charset_info.h"                    /* for CHARSET_INFO */
37
37
#include <stdarg.h>
38
 
#include <drizzled/internal/aio_result.h>
 
38
#include "drizzled/internal/aio_result.h"
39
39
 
40
 
#include <drizzled/memory/root.h>
41
 
#include <drizzled/error.h>
 
40
#include "drizzled/memory/root.h"
 
41
#include "drizzled/error.h"
42
42
 
43
43
#ifndef errno                           /* did we already get it? */
44
44
#ifdef HAVE_ERRNO_AS_DEFINE
54
54
#include <sys/mman.h>
55
55
#endif
56
56
 
57
 
#include <drizzled/qsort_cmp.h>
 
57
#include "drizzled/qsort_cmp.h"
58
58
 
59
 
#include <drizzled/visibility.h>
 
59
#include "drizzled/visibility.h"
60
60
 
61
61
namespace drizzled
62
62
{
269
269
typedef int (*Process_option_func)(void *ctx, const char *group_name,
270
270
                                   const char *option);
271
271
 
272
 
/* Prototypes for mysys and my_func functions */
 
272
int handle_default_option(void *in_ctx, const char *group_name,
 
273
                          const char *option);
 
274
 
 
275
 
 
276
 
 
277
        /* Prototypes for mysys and my_func functions */
273
278
 
274
279
extern int my_copy(const char *from,const char *to,myf MyFlags);
275
280
DRIZZLED_API int my_delete(const char *name,myf MyFlags);