summaryrefslogtreecommitdiff
path: root/sched.h
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-06 10:46:44 +0000
committerrpj <rpj>2011-03-06 10:46:44 +0000
commit1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (patch)
treefd5220ed96e0fef2390b72ad170b62f0516242ce /sched.h
parent85dfeaf6133e1b74eefed26cf76c3f8631c7dd1d (diff)
64 bit compatibility (mingw64)
Diffstat (limited to 'sched.h')
-rw-r--r--sched.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sched.h b/sched.h
index 7c78a85..b85a967 100644
--- a/sched.h
+++ b/sched.h
@@ -96,7 +96,10 @@
# define NEED_ERRNO
# define NEED_SEM
# endif
-# if defined(_UWIN) || defined(__MINGW32__)
+# if defined(__MINGW64__)
+# define HAVE_STRUCT_TIMESPEC
+# define HAVE_MODE_T
+# elif defined(_UWIN) || defined(__MINGW32__)
# define HAVE_MODE_T
# endif
#endif
@@ -113,7 +116,7 @@
#endif
#endif /* PTW32_LEVEL >= PTW32_LEVEL_MAX */
-#if defined(__MINGW32__) || defined(_UWIN)
+#if (defined(__MINGW64__) || defined(__MINGW32__)) || defined(_UWIN)
# if PTW32_LEVEL >= PTW32_LEVEL_MAX
/* For pid_t */
# include <sys/types.h>