1 /* Test program for timedout read/write lock functions.
2 Copyright (C) 2000, 2003 Free Software Foundation, Inc.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
37 # define INIT PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP
40 static pthread_rwlock_t lock
= INIT
;
44 writer_thread (void *nr
)
46 struct timespec delay
;
50 delay
.tv_nsec
= DELAY
;
52 for (n
= 0; n
< WRITETRIES
; ++n
)
54 printf ("writer thread %ld tries again\n", (long int) nr
);
56 if (pthread_rwlock_wrlock (&lock
) != 0)
58 puts ("wrlock failed");
62 printf ("writer thread %ld succeeded\n", (long int) nr
);
64 nanosleep (&delay
, NULL
);
66 if (pthread_rwlock_unlock (&lock
) != 0)
68 puts ("unlock for writer failed");
72 printf ("writer thread %ld released\n", (long int) nr
);
80 reader_thread (void *nr
)
82 struct timespec delay
;
86 delay
.tv_nsec
= DELAY
;
88 for (n
= 0; n
< READTRIES
; ++n
)
90 printf ("reader thread %ld tries again\n", (long int) nr
);
92 if (pthread_rwlock_rdlock (&lock
) != 0)
94 puts ("rdlock failed");
98 printf ("reader thread %ld succeeded\n", (long int) nr
);
100 nanosleep (&delay
, NULL
);
102 if (pthread_rwlock_unlock (&lock
) != 0)
104 puts ("unlock for reader failed");
108 printf ("reader thread %ld released\n", (long int) nr
);
118 pthread_t thwr
[NWRITERS
];
119 pthread_t thrd
[NREADERS
];
123 /* Make standard error the same as standard output. */
126 /* Make sure we see all message, even those on stdout. */
127 setvbuf (stdout
, NULL
, _IONBF
, 0);
129 for (n
= 0; n
< NWRITERS
; ++n
)
130 if (pthread_create (&thwr
[n
], NULL
, writer_thread
,
131 (void *) (long int) n
) != 0)
133 puts ("writer create failed");
137 for (n
= 0; n
< NREADERS
; ++n
)
138 if (pthread_create (&thrd
[n
], NULL
, reader_thread
,
139 (void *) (long int) n
) != 0)
141 puts ("reader create failed");
145 /* Wait for all the threads. */
146 for (n
= 0; n
< NWRITERS
; ++n
)
147 if (pthread_join (thwr
[n
], &res
) != 0)
149 puts ("writer join failed");
152 for (n
= 0; n
< NREADERS
; ++n
)
153 if (pthread_join (thrd
[n
], &res
) != 0)
155 puts ("reader join failed");
163 #define TEST_FUNCTION do_test ()
164 #include "../test-skeleton.c"