summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLihua Zhao <44661095+LihuaZhao@users.noreply.github.com>2019-05-21 10:50:14 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-05-21 10:50:14 (GMT)
commit4fb15021890d327023aefd95f5a84ac33b037d19 (patch)
treedd9a33b6025d64f176cff3823c9555ffa9e58af0 /Misc
parentf2d7ac7e5bd821e29e0fcb78a760a282059ae000 (diff)
downloadcpython-4fb15021890d327023aefd95f5a84ac33b037d19.zip
cpython-4fb15021890d327023aefd95f5a84ac33b037d19.tar.gz
cpython-4fb15021890d327023aefd95f5a84ac33b037d19.tar.bz2
bpo-36648: fix mmap issue for VxWorks (GH-12394)
The mmap module set MAP_SHARED flag when map anonymous memory, however VxWorks only support MAP_PRIVATE when map anonymous memory, this commit clear MAP_SHARED and set MAP_PRIVATE.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-18-14-25-36.bpo-31904.ds3d67.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-03-18-14-25-36.bpo-31904.ds3d67.rst b/Misc/NEWS.d/next/Library/2019-03-18-14-25-36.bpo-31904.ds3d67.rst
new file mode 100644
index 0000000..fd82fe0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-03-18-14-25-36.bpo-31904.ds3d67.rst
@@ -0,0 +1 @@
+Fix mmap fail for VxWorks