Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
cython
Commits
f7c2c1ce
Commit
f7c2c1ce
authored
Nov 09, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimise cypclass lock implementation assuming block acquisition semantics
parent
27953f00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
26 deletions
+5
-26
Cython/Utility/CyObjects.cpp
Cython/Utility/CyObjects.cpp
+5
-26
No files found.
Cython/Utility/CyObjects.cpp
View file @
f7c2c1ce
...
...
@@ -79,35 +79,15 @@
}
void
CyObject_UNRLOCK
()
const
{
int
retry
=
0
;
while
(
true
)
{
uint32_t
prev_readers
=
_readers
;
if
(
prev_readers
+
1
>
1
)
{
uint32_t
new_readers
=
prev_readers
-
1
;
if
(
_readers
.
compare_exchange_weak
(
prev_readers
,
new_readers
))
{
return
;
}
}
else
{
return
;
}
retry
++
;
if
(
retry
>
RETRY_THRESHOLD
)
{
retry
=
0
;
std
::
this_thread
::
yield
();
}
}
_readers
.
fetch_sub
(
1
);
}
void
CyObject_WLOCK
()
const
{
int
retry
=
0
;
while
(
true
)
{
uint32_t
prev_readers
=
_readers
;
if
(
prev_readers
==
0
)
{
if
(
_readers
.
compare_exchange_weak
(
prev_readers
,
HAS_WRITER
))
{
return
;
}
uint32_t
prev_readers
=
0
;
if
(
_readers
.
compare_exchange_weak
(
prev_readers
,
HAS_WRITER
))
{
return
;
}
retry
++
;
...
...
@@ -124,8 +104,7 @@
}
void
CyObject_UNWLOCK
()
const
{
uint32_t
prev_readers
=
HAS_WRITER
;
_readers
.
compare_exchange_strong
(
prev_readers
,
0
);
_readers
.
store
(
0
);
}
};
...
...
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