Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
76f2edd0
Unverified
Commit
76f2edd0
authored
Aug 23, 2018
by
Luca Boccassi
Committed by
GitHub
Aug 23, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3230 from saraf/master
Fix build failure on ARM due to bad variable name
parents
12005bd9
3f1f6285
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
atomic_counter.hpp
src/atomic_counter.hpp
+1
-1
No files found.
src/atomic_counter.hpp
View file @
76f2edd0
...
@@ -188,7 +188,7 @@ class atomic_counter_t
...
@@ -188,7 +188,7 @@ class atomic_counter_t
"+Qo"
(
_value
)
"+Qo"
(
_value
)
:
"Ir"
(
decrement_
),
"r"
(
&
_value
)
:
"Ir"
(
decrement_
),
"r"
(
&
_value
)
:
"cc"
);
:
"cc"
);
return
old_value
-
decrement
!=
0
;
return
old_value
-
decrement
_
!=
0
;
#elif defined ZMQ_ATOMIC_COUNTER_MUTEX
#elif defined ZMQ_ATOMIC_COUNTER_MUTEX
sync
.
lock
();
sync
.
lock
();
_value
-=
decrement_
;
_value
-=
decrement_
;
...
...
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