- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message268643
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:59 | Pedro Lacerda | set | recipients: + Pedro Lacerda, christian.heimes |
| 2016-06-16 06:00:59 | Pedro Lacerda | set | messageid: <1466056859.63.0.34840931303.issue26836@psf.upfronthosting.co.za> |
| 2016-06-16 06:00:59 | Pedro Lacerda | link | issue26836 messages |
| 2016-06-16 06:00:59 | Pedro Lacerda | create | |

