projects
/
userspace-rcu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad6ce6a
)
URCU : use pthread_equal()
author
Bert Wesarg
<bert.wesarg@googlemail.com>
Fri, 6 Feb 2009 11:45:42 +0000
(06:45 -0500)
committer
Mathieu Desnoyers
<mathieu.desnoyers@polymtl.ca>
Fri, 6 Feb 2009 11:45:42 +0000
(06:45 -0500)
But you should use pthread_equal() for you equality test of pthread_t.
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
urcu.c
patch
|
blob
|
blame
|
history
diff --git
a/urcu.c
b/urcu.c
index d0d61385385d713bf221e078767295bd3ecfb2d6..e401d8dc75d34bf04d2e62da56df3cc08f0d470d 100644
(file)
--- a/
urcu.c
+++ b/
urcu.c
@@
-185,7
+185,7
@@
void urcu_remove_reader(pthread_t id)
assert(reader_data != NULL);
for (index = reader_data; index < reader_data + num_readers; index++) {
- if (
index->tid == id
) {
+ if (
pthread_equal(index->tid, id)
) {
memcpy(index, &reader_data[num_readers - 1],
sizeof(struct reader_data));
reader_data[num_readers - 1].tid = 0;
This page took
0.025324 seconds
and
4
git commands to generate.