~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sys.h

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <errno.h>
29
29
#define my_errno (errno)
30
30
 
31
 
#include <my_pthread.h>
 
31
#include <mysys/my_pthread.h>
32
32
 
33
 
#include <m_ctype.h>                    /* for CHARSET_INFO */
 
33
#include <mystrings/m_ctype.h>                    /* for CHARSET_INFO */
34
34
#include <stdarg.h>
35
 
#include <typelib.h>
 
35
#include <mysys/typelib.h>
36
36
 
37
37
#define MY_INIT(name);          { my_progname= name; my_init(); }
38
38
 
482
482
#define my_b_bytes_in_cache(info) (size_t) (*(info)->current_end - \
483
483
                                          *(info)->current_pos)
484
484
 
485
 
typedef uint32 ha_checksum;
 
485
typedef uint32_t ha_checksum;
486
486
 
487
487
/* Define the type of function to be passed to process_default_option_files */
488
488
typedef int (*Process_option_func)(void *ctx, const char *group_name,
489
489
                                   const char *option);
490
490
 
491
 
#include <my_alloc.h>
 
491
#include <mysys/my_alloc.h>
492
492
 
493
493
 
494
494
        /* Prototypes for mysys and my_func functions */
569
569
extern void my_error _VARARGS((int nr,myf MyFlags, ...));
570
570
extern void my_printf_error _VARARGS((uint my_err, const char *format,
571
571
                                      myf MyFlags, ...))
572
 
                                      ATTRIBUTE_FORMAT(printf, 2, 4);
 
572
                                      __attribute__((format(printf, 2, 4)));
573
573
extern int my_error_register(const char **errmsgs, int first, int last);
574
574
extern const char **my_error_unregister(int first, int last);
575
575
extern void my_message(uint my_err, const char *str,myf MyFlags);
808
808
#define MAP_NOSYNC       0x0800
809
809
#define MAP_FAILED       ((void *)-1)
810
810
#define MS_SYNC          0x0000
811
 
 
812
 
#ifndef __NETWARE__
813
811
#define HAVE_MMAP
814
 
#endif
815
812
 
816
813
void *my_mmap(void *, size_t, int, int, int, my_off_t);
817
814
int my_munmap(void *, size_t);