Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
f0a65c89
Unverified
Commit
f0a65c89
authored
Jul 12, 2021
by
Henry Schreiner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(fix): spelling mistake in recent commit
parent
7472d37a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
docs/advanced/pycpp/utilities.rst
+1
-1
include/pybind11/iostream.h
+1
-1
No files found.
docs/advanced/pycpp/utilities.rst
View file @
f0a65c89
...
@@ -51,7 +51,7 @@ redirects output to the corresponding Python streams:
...
@@ -51,7 +51,7 @@ redirects output to the corresponding Python streams:
The implementation in ``pybind11/iostream.h`` is NOT thread safe. Multiple
The implementation in ``pybind11/iostream.h`` is NOT thread safe. Multiple
threads writing to a redirected ostream concurrently cause data races
threads writing to a redirected ostream concurrently cause data races
and potentially buffer overflows. Therefore it is curr
r
ently a requirement
and potentially buffer overflows. Therefore it is currently a requirement
that all (possibly) concurrent redirected ostream writes are protected by
that all (possibly) concurrent redirected ostream writes are protected by
a mutex. #HelpAppreciated: Work on iostream.h thread safety. For more
a mutex. #HelpAppreciated: Work on iostream.h thread safety. For more
background see the discussions under
background see the discussions under
...
...
include/pybind11/iostream.h
View file @
f0a65c89
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
WARNING: The implementation in this file is NOT thread safe. Multiple
WARNING: The implementation in this file is NOT thread safe. Multiple
threads writing to a redirected ostream concurrently cause data races
threads writing to a redirected ostream concurrently cause data races
and potentially buffer overflows. Therefore it is curr
r
ently a requirement
and potentially buffer overflows. Therefore it is currently a requirement
that all (possibly) concurrent redirected ostream writes are protected by
that all (possibly) concurrent redirected ostream writes are protected by
a mutex.
a mutex.
#HelpAppreciated: Work on iostream.h thread safety.
#HelpAppreciated: Work on iostream.h thread safety.
...
...
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