Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
50466c66
Commit
50466c66
authored
May 13, 2019
by
Pierre Glaser
Committed by
Antoine Pitrou
May 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36867: DOC update multiprocessing.rst (GH-13289)
Followup to bpo-36867.
parent
b0917df3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
Doc/library/multiprocessing.rst
Doc/library/multiprocessing.rst
+10
-6
No files found.
Doc/library/multiprocessing.rst
View file @
50466c66
...
@@ -131,13 +131,17 @@ to start a process. These *start methods* are
...
@@ -131,13 +131,17 @@ to start a process. These *start methods* are
handles
on
Windows
.
handles
on
Windows
.
On
Unix
using
the
*
spawn
*
or
*
forkserver
*
start
methods
will
also
On
Unix
using
the
*
spawn
*
or
*
forkserver
*
start
methods
will
also
start
a
*
semaphore
tracker
*
process
which
tracks
the
unlinked
named
start
a
*
resource
tracker
*
process
which
tracks
the
unlinked
named
semaphores
created
by
processes
of
the
program
.
When
all
processes
system
resources
(
such
as
named
semaphores
or
have
exited
the
semaphore
tracker
unlinks
any
remaining
semaphores
.
:
class
:`~
multiprocessing
.
shared_memory
.
SharedMemory
`
objects
)
created
by
processes
of
the
program
.
When
all
processes
have
exited
the
resource
tracker
unlinks
any
remaining
tracked
object
.
Usually
there
should
be
none
,
but
if
a
process
was
killed
by
a
signal
Usually
there
should
be
none
,
but
if
a
process
was
killed
by
a
signal
there
may
be
some
"leaked"
semaphores
.
(
Unlinking
the
named
semaphores
there
may
be
some
"leaked"
resources
.
(
Neither
leaked
semaphores
nor
shared
is
a
serious
matter
since
the
system
allows
only
a
limited
number
,
and
memory
segments
will
be
automatically
unlinked
until
the
next
reboot
.
This
is
they
will
not
be
automatically
unlinked
until
the
next
reboot
.)
problematic
for
both
objects
because
the
system
allows
only
a
limited
number
of
named
semaphores
,
and
shared
memory
segments
occupy
some
space
in
the
main
memory
.)
To
select
a
start
method
you
use
the
:
func
:`
set_start_method
`
in
To
select
a
start
method
you
use
the
:
func
:`
set_start_method
`
in
the
``
if
__name__
==
'__main__'
``
clause
of
the
main
module
.
For
the
``
if
__name__
==
'__main__'
``
clause
of
the
main
module
.
For
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment