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
15a6127e
Commit
15a6127e
authored
Jun 13, 2017
by
Antoine Pitrou
Committed by
GitHub
Jun 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.7] Mention how to disable signal fd wakeup (GH-2140) (#2151)
(cherry picked from commit
d79c1d4a
)
parent
bbb33589
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Doc/library/signal.rst
Doc/library/signal.rst
+4
-2
No files found.
Doc/library/signal.rst
View file @
15a6127e
...
@@ -197,8 +197,10 @@ The :mod:`signal` module defines the following functions:
...
@@ -197,8 +197,10 @@ The :mod:`signal` module defines the following functions:
written to the fd. This can be used by a library to wakeup a poll or select
written to the fd. This can be used by a library to wakeup a poll or select
call, allowing the signal to be fully processed.
call, allowing the signal to be fully processed.
The old wakeup fd is returned. *fd* must be non-blocking. It is up to the
The old wakeup fd is returned (or -1 if file descriptor wakeup was not
library to remove any bytes before calling poll or select again.
enabled). If *fd* is -1, file descriptor wakeup is disabled.
If not -1, *fd* must be non-blocking. It is up to the library to remove
any bytes from *fd* before calling poll or select again.
When threads are enabled, this function can only be called from the main thread;
When threads are enabled, this function can only be called from the main thread;
attempting to call it from other threads will cause a :exc:`ValueError`
attempting to call it from other threads will cause a :exc:`ValueError`
...
...
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