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 Pedro Lacerda
Recipients Pedro Lacerda, christian.heimes
Date 2016-06-16.06:00:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466056859.63.0.34840931303.issue26836@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe useful at mmapmodule.c replacing

        /* SVR4 method to map anonymous memory is to open /dev/zero */
        fd = devzero = _Py_open("/dev/zero", O_RDWR);

tagname is unused at UNIX version of new_mmap_object() so if provided something like could be added for Linux only
        fd = memfd_create(tagname, O_RDWR);
History
Date User Action Args
2016-06-16 06:00:59Pedro Lacerdasetrecipients: + Pedro Lacerda, christian.heimes
2016-06-16 06:00:59Pedro Lacerdasetmessageid: <1466056859.63.0.34840931303.issue26836@psf.upfronthosting.co.za>
2016-06-16 06:00:59Pedro Lacerdalinkissue26836 messages
2016-06-16 06:00:59Pedro Lacerdacreate