test_urcu.c: use gettid()
authorBert Wesarg <bert.wesarg@googlemail.com>
Sat, 7 Feb 2009 23:59:29 +0000 (18:59 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Sat, 7 Feb 2009 23:59:29 +0000 (18:59 -0500)
It's probably better to print the tid for each thread, not the pid.

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
test_urcu.c

index db0b68ca2d18cc58cc0bd163a938375773ec660c..ea5a784f785dbf0f57911074fc3dee4f4d906b3f 100644 (file)
 #include <unistd.h>
 #include <stdio.h>
 #include <assert.h>
+#include <sys/syscall.h>
+
+#if defined(_syscall0)
+_syscall0(pid_t, gettid)
+#elif defined(__NR_gettid)
+static inline pid_t gettid(void)
+{
+       return syscall(__NR_gettid);
+}
+#else
+#warning "use pid as tid"
+static inline pid_t gettid(void)
+{
+       return getpid();
+}
+#endif
+
 #include "urcu.h"
 
 struct test_array {
@@ -36,8 +53,8 @@ void *thr_reader(void *arg)
        int qparity, i, j;
        struct test_array *local_ptr;
 
-       printf("thread %s, thread id : %lu, pid %lu\n",
-                       "reader", pthread_self(), (unsigned long)getpid());
+       printf("thread %s, thread id : %lx, tid %lu\n",
+                       "reader", pthread_self(), (unsigned long)gettid());
        sleep(2);
 
        urcu_register_thread();
@@ -66,8 +83,8 @@ void *thr_writer(void *arg)
        int i;
        struct test_array *new, *old;
 
-       printf("thread %s, thread id : %lu, pid %lu\n",
-                       "writer", pthread_self(), (unsigned long)getpid());
+       printf("thread %s, thread id : %lx, tid %lu\n",
+                       "writer", pthread_self(), (unsigned long)gettid());
        sleep(2);
 
        for (i = 0; i < 10000000; i++) {
@@ -104,6 +121,9 @@ int main()
        void *tret;
        int i;
 
+       printf("thread %-6s, thread id : %lx, tid %lu\n",
+                       "main", pthread_self(), (unsigned long)gettid());
+
        for (i = 0; i < NR_READ; i++) {
                err = pthread_create(&tid_reader[i], NULL, thr_reader, NULL);
                if (err != 0)
This page took 0.026422 seconds and 4 git commands to generate.