4 * Userspace RCU library - test program
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <sys/types.h>
32 #include <sys/syscall.h>
36 #if defined(_syscall0)
37 _syscall0(pid_t
, gettid
)
38 #elif defined(__NR_gettid)
39 static inline pid_t
gettid(void)
41 return syscall(__NR_gettid
);
44 #warning "use pid as tid"
45 static inline pid_t
gettid(void)
57 pthread_rwlock_t lock
= PTHREAD_RWLOCK_INITIALIZER
;
59 static struct test_array test_array
= { 8 };
61 #define OUTER_READ_LOOP 200U
62 #define INNER_READ_LOOP 100000U
63 #define READ_LOOP ((unsigned long long)OUTER_READ_LOOP * INNER_READ_LOOP)
65 #define WRITE_LOOP 2000U
70 static cycles_t reader_time
[NR_READ
] __attribute__((aligned(128)));
72 void *thr_reader(void *arg
)
75 cycles_t time1
, time2
;
77 printf("thread_begin %s, thread id : %lx, tid %lu\n",
78 "reader", pthread_self(), (unsigned long)gettid());
82 for (i
= 0; i
< OUTER_READ_LOOP
; i
++) {
83 for (j
= 0; j
< INNER_READ_LOOP
; j
++) {
84 pthread_rwlock_rdlock(&lock
);
85 assert(test_array
.a
== 8);
86 pthread_rwlock_unlock(&lock
);
91 reader_time
[(unsigned long)arg
] = time2
- time1
;
94 printf("thread_end %s, thread id : %lx, tid %lu\n",
95 "reader", pthread_self(), (unsigned long)gettid());
100 void *thr_writer(void *arg
)
104 printf("thread_begin %s, thread id : %lx, tid %lu\n",
105 "writer", pthread_self(), (unsigned long)gettid());
108 for (i
= 0; i
< WRITE_LOOP
; i
++) {
109 pthread_rwlock_wrlock(&lock
);
111 pthread_rwlock_unlock(&lock
);
115 printf("thread_end %s, thread id : %lx, tid %lu\n",
116 "writer", pthread_self(), (unsigned long)gettid());
123 pthread_t tid_reader
[NR_READ
], tid_writer
[NR_WRITE
];
126 cycles_t tot_time
= 0;
128 printf("thread %-6s, thread id : %lx, tid %lu\n",
129 "main", pthread_self(), (unsigned long)gettid());
131 for (i
= 0; i
< NR_READ
; i
++) {
132 err
= pthread_create(&tid_reader
[i
], NULL
, thr_reader
,
137 for (i
= 0; i
< NR_WRITE
; i
++) {
138 err
= pthread_create(&tid_writer
[i
], NULL
, thr_writer
, NULL
);
145 for (i
= 0; i
< NR_READ
; i
++) {
146 err
= pthread_join(tid_reader
[i
], &tret
);
149 tot_time
+= reader_time
[i
];
151 for (i
= 0; i
< NR_WRITE
; i
++) {
152 err
= pthread_join(tid_writer
[i
], &tret
);
156 printf("Time per read : %g cycles\n",
157 (double)tot_time
/ ((double)NR_READ
* (double)READ_LOOP
));