~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/aio_result.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 01:03:01 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913010301-tcvvezipx1124acy
Added calls to the dtrace delete begin/end probes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_INTERNAL_AIO_RESULT_H
22
 
#define DRIZZLED_INTERNAL_AIO_RESULT_H
 
21
#ifndef mysys_aio_result_h
 
22
#define mysys_aio_result_h
23
23
 
24
24
#ifdef HAVE_AIOWAIT
25
25
#include <sys/asynch.h>      /* Used by record-cache */
26
 
 
27
 
namespace drizzled
28
 
{
29
 
namespace internal
30
 
{
31
 
 
32
26
typedef struct my_aio_result {
33
27
  aio_result_t result;
34
28
  int         pending;
35
29
} my_aio_result;
36
 
 
37
 
} /* namespace internal */
38
 
} /* namespace drizzled */
39
 
 
40
 
#endif
41
 
 
42
 
#endif /* DRIZZLED_INTERNAL_AIO_RESULT_H */
 
30
#endif
 
31
 
 
32
#endif