]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-89891: Refer SharedMemory implementation as POSIX (GH-104678)
authorOleg Iarygin <oleg@arhadthedev.net>
Thu, 1 Feb 2024 19:57:36 +0000 (22:57 +0300)
committerGitHub <noreply@github.com>
Thu, 1 Feb 2024 19:57:36 +0000 (19:57 +0000)
It only uses POSIX API.

Doc/library/multiprocessing.shared_memory.rst

index 10d7f061fb759b767ebb508e21277f89fa224655..933fd07d62418a8182c4f9dd8db41fd528e035e1 100644 (file)
@@ -23,7 +23,7 @@ processes, a :class:`~multiprocessing.managers.BaseManager` subclass,
 :class:`~multiprocessing.managers.SharedMemoryManager`, is also provided in the
 :mod:`multiprocessing.managers` module.
 
-In this module, shared memory refers to "System V style" shared memory blocks
+In this module, shared memory refers to "POSIX style" shared memory blocks
 (though is not necessarily implemented explicitly as such) and does not refer
 to "distributed shared memory".  This style of shared memory permits distinct
 processes to potentially read and write to a common (or shared) region of