Re: [PATCH urcu] Use pthread_equal() for pthread_t's equality test

From: Mathieu Desnoyers
Date: Tue May 12 2009 - 14:54:32 EST


* Bert Wesarg (bert.wesarg@xxxxxxxxxxxxxx) wrote:
> Signed-off-by: Bert Wesarg <bert.wesarg@xxxxxxxxxxxxxx>
> ---
> urcu.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>

Hi Bert,

I have to ask all userspace RCU committers for permission to move the
code to LGPL. IBM already gave their approval. Is it OK with you wrt to
the patch you posted here ?

Mathieu

> diff --git a/urcu.c b/urcu.c
> index d0d6138..e401d8d 100644
> --- 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;
> --
> 1.6.1.rc4
>

--
Mathieu Desnoyers
OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/