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 neologix
Recipients neologix, pitrou, rbhkamal, sbt, serhiy.storchaka, vstinner
Date 2013-10-21.18:33:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382380437.54.0.514189296802.issue19337@psf.upfronthosting.co.za>
In-reply-to
Content
> 3- From another process, like bash, continuously write to the file.

That's the problem: reducing (actually truncating in your case) a file currently mmaped *can only result in a core dump*: when you try to read from a location in memory which doesn't correspond anymore to a position in the file (since it got truncated), which value could the kernel return?

The page you're trying to read from isn't mapped anymore, so you get a segfault.

Apparently it's even documented in the main page:
"""
The effect of changing the size of the underlying file of a mapping on the pages that correspond to added or removed regions of
       the file is unspecified.
"""
History
Date User Action Args
2013-10-21 18:33:57neologixsetrecipients: + neologix, pitrou, vstinner, sbt, serhiy.storchaka, rbhkamal
2013-10-21 18:33:57neologixsetmessageid: <1382380437.54.0.514189296802.issue19337@psf.upfronthosting.co.za>
2013-10-21 18:33:57neologixlinkissue19337 messages
2013-10-21 18:33:57neologixcreate