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
aadc519c
Commit
aadc519c
authored
Nov 19, 2011
by
Petri Lehtinen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 3.2 (closes #13338)
parents
b96172e2
8d40f16a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
Include/pyatomic.h
Include/pyatomic.h
+4
-2
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+4
-0
No files found.
Include/pyatomic.h
View file @
aadc519c
...
...
@@ -64,7 +64,8 @@ _Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)
case
_Py_memory_order_seq_cst
:
_Py_ANNOTATE_HAPPENS_BEFORE
(
address
);
break
;
default:
case
_Py_memory_order_relaxed
:
case
_Py_memory_order_acquire
:
break
;
}
switch
(
order
)
{
...
...
@@ -73,7 +74,8 @@ _Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)
case
_Py_memory_order_seq_cst
:
_Py_ANNOTATE_HAPPENS_AFTER
(
address
);
break
;
default:
case
_Py_memory_order_relaxed
:
case
_Py_memory_order_release
:
break
;
}
}
...
...
Misc/ACKS
View file @
aadc519c
...
...
@@ -132,6 +132,7 @@ Titus Brown
Oleg Broytmann
Dave Brueck
Francisco Martín Brugué
Floris Bruynooghe
Stan Bubrouski
Erik de Bueger
Jan-Hein Bührman
...
...
Misc/NEWS
View file @
aadc519c
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
- Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER
to allow compiling extension modules with -Wswitch-enum on gcc.
Initial patch by Floris Bruynooghe.
- Issue #10227: Add an allocation cache for a single slice object. Patch by
Stefan Behnel.
...
...
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