Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1787 → Rev 2022

/trunk/kernel/test/synch/rwlock3.c/test.c
42,7 → 42,7
static void reader(void *arg);
static void failed(void);
 
void reader(void *arg)
static void reader(void *arg)
{
thread_detach(THREAD);
 
61,13 → 61,13
 
}
 
void failed(void)
static void failed(void)
{
printf("Test failed prematurely.\n");
thread_exit();
}
 
void test(void)
void test_rwlock3(void)
{
int i;
thread_t *thrd;