~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sys.h

  • Committer: Monty Taylor
  • Date: 2008-10-07 01:38:03 UTC
  • mto: (481.1.16 codestyle)
  • mto: This revision was merged to the branch mainline in revision 488.
  • Revision ID: monty@inaugust.com-20081007013803-4cscnlq9xs7uynad
Split out aio_result.h into its own header.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef _my_sys_h
22
22
#define _my_sys_h
23
23
 
24
 
#ifdef HAVE_AIOWAIT
25
 
#include <sys/asynch.h>                 /* Used by record-cache */
26
 
typedef struct my_aio_result {
27
 
  aio_result_t result;
28
 
  int          pending;
29
 
} my_aio_result;
30
 
#endif
31
 
 
32
24
#include <errno.h>
33
25
#define my_errno (errno)
34
26
 
37
29
#include <mystrings/m_ctype.h>                    /* for CHARSET_INFO */
38
30
#include <stdarg.h>
39
31
#include <mysys/typelib.h>
 
32
#include <mysys/aio_result.h>
40
33
 
41
34
#define MY_INIT(name);          { my_progname= name; my_init(); }
42
35