mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #21116: Avoid blowing memory when allocating a multiprocessing shared
array that's larger than 50% of the available RAM. Patch by Médéric Boquien.
This commit is contained in:
parent
4269d6db93
commit
d5aec7ba48
3 changed files with 12 additions and 1 deletions
|
@ -71,7 +71,14 @@ else:
|
|||
os.unlink(name)
|
||||
util.Finalize(self, os.close, (self.fd,))
|
||||
with open(self.fd, 'wb', closefd=False) as f:
|
||||
f.write(b'\0'*size)
|
||||
bs = 1024 * 1024
|
||||
if size >= bs:
|
||||
zeros = b'\0' * bs
|
||||
for _ in range(size // bs):
|
||||
f.write(zeros)
|
||||
del zeros
|
||||
f.write(b'\0' * (size % bs))
|
||||
assert f.tell() == size
|
||||
self.buffer = mmap.mmap(self.fd, self.size)
|
||||
|
||||
def reduce_arena(a):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue