This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients David.Edelsohn, pitrou, serhiy.storchaka, vstinner
Date 2014-09-22.22:35:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411425301.85.0.142130774875.issue22396@psf.upfronthosting.co.za>
In-reply-to
Content
> I understand that AIX doesn't declare the function prototype correctly?

AIX bug report:
http://www-01.ibm.com/support/docview.wss?uid=isg1IV56170

I like Ruby's patch:

-#ifdef HAVE_POSIX_FADVISE
+    /* AIX currently does not support a 32-bit call to posix_fadvise()
+     * if _LARGE_FILES is defined.
+     */
+#if defined(HAVE_POSIX_FADVISE) && !(defined(_AIX) && defined(_LARGE_FILES) && !defined(_ARCH_PPC64))
History
Date User Action Args
2014-09-22 22:35:01vstinnersetrecipients: + vstinner, pitrou, serhiy.storchaka, David.Edelsohn
2014-09-22 22:35:01vstinnersetmessageid: <1411425301.85.0.142130774875.issue22396@psf.upfronthosting.co.za>
2014-09-22 22:35:01vstinnerlinkissue22396 messages
2014-09-22 22:35:01vstinnercreate