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
9f571354
Commit
9f571354
authored
Dec 05, 2011
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
given by Campbell Barton).
parent
5b73ca4b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
Include/pyatomic.h
Include/pyatomic.h
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Include/pyatomic.h
View file @
9f571354
...
...
@@ -58,6 +58,7 @@ _Py_atomic_thread_fence(_Py_memory_order order)
static
__inline__
void
_Py_ANNOTATE_MEMORY_ORDER
(
const
volatile
void
*
address
,
_Py_memory_order
order
)
{
(
void
)
address
;
/* shut up -Wunused-parameter */
switch
(
order
)
{
case
_Py_memory_order_release
:
case
_Py_memory_order_acq_rel
:
...
...
Misc/NEWS
View file @
9f571354
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
given by Campbell Barton).
- Issue #7111: Python can now be run without a stdin, stdout or stderr
stream. It was already the case with Python 2. However, the corresponding
sys module entries are now set to None (instead of an unusable file object).
...
...
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