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 pitrou
Recipients larry, ned.deily, neologix, pitrou, ronaldoussoren
Date 2018-02-24.21:15:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519506923.52.0.467229070634.issue32941@psf.upfronthosting.co.za>
In-reply-to
Content
On POSIX, mmap objects could expose a method wrapping the madvise() library call.  I suggest the following API

  mmap_object.madvise(option[, start[, length]])

If omitted, *start* and *length* would span the whole memory area described by the mmap object.  *option* must be a recognized OS option for the madvise() library call.

The mmap module would expose the various MADV_* options available on the current platform.

Open question: should we expose madvise() or posix_madvise()? (these are two different calls, at least on Linux)  posix_madvise() is arguably more portable, but madvise() is much more powerful, so I'd lean towards madvise().
History
Date User Action Args
2018-02-24 21:15:23pitrousetrecipients: + pitrou, ronaldoussoren, larry, ned.deily, neologix
2018-02-24 21:15:23pitrousetmessageid: <1519506923.52.0.467229070634.issue32941@psf.upfronthosting.co.za>
2018-02-24 21:15:23pitroulinkissue32941 messages
2018-02-24 21:15:23pitroucreate