Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 2028 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 2022
Line 38... Line 38...
38
#define READERS     50
38
#define READERS     50
39
#define WRITERS     50
39
#define WRITERS     50
40
 
40
 
41
static rwlock_t rwlock;
41
static rwlock_t rwlock;
42
 
42
 
43
void test(void)
43
void test_rwlock1(void)
44
{
44
{
45
    printf("Read/write locks test #1\n");
45
    printf("Read/write locks test #1\n");
46
 
46
 
47
    rwlock_initialize(&rwlock);
47
    rwlock_initialize(&rwlock);
48
 
48