]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
my_getpagesize(): New function; returns the size of a page of memory.
authorFred Drake <fdrake@acm.org>
Sun, 1 Oct 2000 17:50:46 +0000 (17:50 +0000)
committerFred Drake <fdrake@acm.org>
Sun, 1 Oct 2000 17:50:46 +0000 (17:50 +0000)
commit145f96eb36a0ec8cb9a7f5926f94fbbcf2beebcf
treeb695aeb19f1e73b4748daa02596d56a45f6d2c38
parent370a29fe42e8581fca51c59de62c11b7d28abaab
my_getpagesize():  New function; returns the size of a page of memory.
                   Versions are defined for Windows and Unix; the Unix
                   flavor uses sysconf() to get the page size; this avoids
                   the use of getpagesize(), which is deprecated and
                   requires an additional library on some platforms
                   (specifically, Reliant UNIX).

This partially closes SourceForge bug #113797.
Modules/mmapmodule.c