~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_sys.h

Merge in additional test case fixes.

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/typelib.h"
 
39
#include "drizzled/internal/aio_result.h"
39
40
 
40
 
#include <drizzled/memory/root.h>
41
 
#include <drizzled/error.h>
 
41
#include "drizzled/memory/root.h"
 
42
#include "drizzled/error.h"
42
43
 
43
44
#ifndef errno                           /* did we already get it? */
44
45
#ifdef HAVE_ERRNO_AS_DEFINE
54
55
#include <sys/mman.h>
55
56
#endif
56
57
 
57
 
#include <drizzled/qsort_cmp.h>
 
58
#include "drizzled/qsort_cmp.h"
58
59
 
59
 
#include <drizzled/visibility.h>
 
60
#include "drizzled/visibility.h"
60
61
 
61
62
namespace drizzled
62
63
{
269
270
typedef int (*Process_option_func)(void *ctx, const char *group_name,
270
271
                                   const char *option);
271
272
 
272
 
/* Prototypes for mysys and my_func functions */
 
273
int handle_default_option(void *in_ctx, const char *group_name,
 
274
                          const char *option);
 
275
 
 
276
 
 
277
 
 
278
        /* Prototypes for mysys and my_func functions */
273
279
 
274
280
extern int my_copy(const char *from,const char *to,myf MyFlags);
275
281
DRIZZLED_API int my_delete(const char *name,myf MyFlags);