We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1f9fee + ee6bec0 commit c5589d1Copy full SHA for c5589d1
runtime/oti/ContinuationHelpers.hpp
@@ -27,6 +27,13 @@
27
#include "j9vmconstantpool.h"
28
#if JAVA_SPEC_VERSION >= 24
29
#include "thrtypes.h"
30
+/* thrtypes.h includes dependency to <fcntl.h> which on AIX contains:
31
+ * #define open open64
32
+ * This conflicts with other uses of the name "open".
33
+ */
34
+#if defined(open)
35
+#undef open
36
+#endif /* defined(open) */
37
#endif /* JAVA_SPEC_VERSION >= 24 */
38
#include "VMHelpers.hpp"
39
0 commit comments