#include <stdio.h>
+#include <pthread.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <sys/wait.h>
+#include <unistd.h>
+#include <stdio.h>
#include "urcu.h"
+#define NR_READ 10
+#define NR_WRITE 4
+
+
+void *thr_reader(void *arg)
+{
+ printf("thread %s, thread id : %lu, pid %lu\n",
+ "reader", pthread_self(), getpid());
+ sleep(2);
+
+ urcu_register_thread();
+
+
+
+ urcu_unregister_thread();
+ return ((void*)1);
+
+}
+
+void *thr_writer(void *arg)
+{
+ int i;
+
+ printf("thread %s, thread id : %lu, pid %lu\n",
+ "writer", pthread_self(), getpid());
+ sleep(2);
+
+ for (i = 0; i < 1000; i++) {
+ }
+
+ return ((void*)2);
+}
int main()
{
+ int err;
+ pthread_t tid_reader[NR_READ], tid_writer[NR_WRITE];
+ void *tret;
+ int i;
+
+ for (i = 0; i < NR_READ; i++) {
+ err = pthread_create(&tid_reader[i], NULL, thr_reader, NULL);
+ if (err != 0)
+ exit(1);
+ }
+ for (i = 0; i < NR_WRITE; i++) {
+ err = pthread_create(&tid_writer[i], NULL, thr_writer, NULL);
+ if (err != 0)
+ exit(1);
+ }
+
+ sleep(10);
+ for (i = 0; i < NR_WRITE; i++) {
+ err = pthread_join(tid_reader[i], &tret);
+ if (err != 0)
+ exit(1);
+ }
+ for (i = 0; i < NR_WRITE; i++) {
+ err = pthread_join(tid_writer[i], &tret);
+ if (err != 0)
+ exit(1);
+ }
+ return 0;
}
#include <pthread.h>
#include <signal.h>
#include <assert.h>
+#include <stdlib.h>
+#include <string.h>
#include "urcu.h"
struct reader_data {
pthread_t tid;
- int **urcu_active_readers;
+ int *urcu_active_readers;
};
static struct reader_data *reader_data;
static void force_mb_all_threads(void)
{
- pthread_t *index;
+ struct reader_data *index;
/*
* Ask for each threads to execute a mb() so we can consider the
* compiler barriers around rcu read lock as real memory barriers.
*/
if (!reader_data)
return;
- sigtask = TASK_FORCE_MB;
sig_done = 0;
- mb(); /* write sig_done and sigtask before sending the signals */
+ mb(); /* write sig_done before sending the signals */
for (index = reader_data; index < reader_data + num_readers; index++)
- pthread_kill(*index, SIGURCU);
+ pthread_kill(index->tid, SIGURCU);
/*
* Wait for sighandler (and thus mb()) to execute on every thread.
* BUSY-LOOP.
*/
while (sig_done < num_readers)
barrier();
- mb(); /* read sig_done before writing sigtask */
- sigtask = TASK_NONE;
+ mb(); /* read sig_done before ending the barrier */
}
void wait_for_quiescent_state(int parity)
{
+ struct reader_data *index;
if (!reader_data)
return;
/* Wait for each thread urcu_active_readers count to become 0.
*/
- for (index = readers_data; index < reader_data + num_readers; index++) {
+ for (index = reader_data; index < reader_data + num_readers; index++) {
/*
* BUSY-LOOP.
*/
ret = pthread_mutex_lock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex lock", __func__);
+ perror("Error in pthread mutex lock");
exit(-1);
}
*ptr = new;
wmb(); /* Write ptr before changing the qparity */
/* All threads should read qparity before ptr */
- force_rmb_all_threads();
+ force_mb_all_threads();
prev_parity = switch_next_urcu_qparity();
/*
ret = pthread_mutex_unlock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex lock", __func__);
+ perror("Error in pthread mutex lock");
exit(-1);
}
return oldptr;
void urcu_add_reader(pthread_t id)
{
+ struct reader_data *oldarray;
+
if (!reader_data) {
alloc_readers = INIT_NUM_THREADS;
- num_readers = 1;
+ num_readers = 0;
reader_data =
malloc(sizeof(struct reader_data) * alloc_readers);
- return;
}
if (alloc_readers < num_readers + 1) {
- pthread_t *oldarray;
oldarray = reader_data;
reader_data = malloc(sizeof(struct reader_data)
* (alloc_readers << 1));
void urcu_register_thread(void)
{
pthread_t self = pthread_self();
+ int ret;
ret = pthread_mutex_lock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex lock", __func__);
+ perror("Error in pthread mutex lock");
exit(-1);
}
ret = pthread_mutex_unlock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex unlock", __func__);
+ perror("Error in pthread mutex unlock");
exit(-1);
}
}
-void urcu_register_thread(void)
+void urcu_unregister_thread(void)
{
pthread_t self = pthread_self();
+ int ret;
ret = pthread_mutex_lock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex lock", __func__);
+ perror("Error in pthread mutex lock");
exit(-1);
}
ret = pthread_mutex_unlock(&urcu_mutex);
if (ret) {
- perror("Error in %s pthread mutex unlock", __func__);
+ perror("Error in pthread mutex unlock");
exit(-1);
}
}
-void handler(int signo, siginfo_t *siginfo, void *context)
+void sigurcu_handler(int signo, siginfo_t *siginfo, void *context)
{
mb();
atomic_inc(&sig_done);
act.sa_sigaction = sigurcu_handler;
ret = sigaction(SIGURCU, &act, NULL);
- if (!ret) {
- perror("Error in %s sigaction", __func__);
+ if (ret) {
+ perror("Error in sigaction");
exit(-1);
}
}
int ret;
ret = sigaction(SIGURCU, NULL, &act);
- if (!ret) {
- perror("Error in %s sigaction", __func__);
+ if (ret) {
+ perror("Error in sigaction");
exit(-1);
}
assert(act.sa_sigaction == sigurcu_handler);