From: Guido van Rossum Date: Fri, 25 Feb 2000 17:51:00 +0000 (+0000) Subject: Delete references to _SC_AIO_LIST_MAX; it appears that that symbol was X-Git-Tag: v1.6a1~352 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4985e409397f805b54e35658de1df55cd0343284;p=thirdparty%2FPython%2Fcpython.git Delete references to _SC_AIO_LIST_MAX; it appears that that symbol was just a typo in some Linux header; the real symbol is _SC_AIO_LISTIO_MAX. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 20170d6d1549..77c0ba185e67 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3785,9 +3785,6 @@ static struct constdef posix_constants_sysconf[] = { #ifdef _SC_AIO_LISTIO_MAX {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX}, #endif -#ifdef _SC_AIO_LIST_MAX - {"SC_AIO_LIST_MAX", _SC_AIO_LIST_MAX}, -#endif #ifdef _SC_AIO_MAX {"SC_AIO_MAX", _SC_AIO_MAX}, #endif