~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/os/os0file.c

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
#include "srv0start.h"
56
56
#include "fil0fil.h"
57
57
#include "buf0buf.h"
58
 
#include <errno.h>
59
 
#include <fcntl.h>
60
 
#include <limits.h>
61
 
#include <unistd.h>
62
58
#ifndef UNIV_HOTBACKUP
63
59
# include "os0sync.h"
64
60
# include "os0thread.h"
67
63
/* Add includes for the _stat() call to compile on Windows */
68
64
#  include <sys/types.h>
69
65
#  include <sys/stat.h>
 
66
#  include <errno.h>
70
67
# endif /* __WIN__ */
71
68
#endif /* !UNIV_HOTBACKUP */
72
69