blob: 2b40c3fc6c2ff923c7bf55620a7b071462f9bf58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* Copyright (C) 2012 Tobias Brunner
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup rwlock_condvar rwlock_condvar
* @{ @ingroup threading
*/
#ifndef RWLOCK_CONDVAR_H_
#define RWLOCK_CONDVAR_H_
typedef struct rwlock_condvar_t rwlock_condvar_t;
#include "rwlock.h"
/**
* A special condvar implementation that can be used in conjunction
* with rwlock_t (the write lock to be precise).
*
* @note The implementation does not verify that the current thread actually
* holds the write lock and not the read lock, so watch out.
*/
struct rwlock_condvar_t {
/**
* Wait on a condvar until it gets signalized.
*
* @param lock lock to release while waiting (write lock)
*/
void (*wait)(rwlock_condvar_t *this, rwlock_t *lock);
/**
* Wait on a condvar until it gets signalized, or times out.
*
* @param lock lock to release while waiting (write lock)
* @param timeout timeout im ms
* @return TRUE if timed out, FALSE otherwise
*/
bool (*timed_wait)(rwlock_condvar_t *this, rwlock_t *lock, u_int timeout);
/**
* Wait on a condvar until it gets signalized, or times out.
*
* The passed timeval should be calculated based on the time_monotonic()
* function.
*
* @param lock lock to release while waiting (write lock)
* @param tv absolute time until timeout
* @return TRUE if timed out, FALSE otherwise
*/
bool (*timed_wait_abs)(rwlock_condvar_t *this, rwlock_t *lock,
timeval_t tv);
/**
* Wake up a single thread in a condvar.
*/
void (*signal)(rwlock_condvar_t *this);
/**
* Wake up all threads in a condvar.
*/
void (*broadcast)(rwlock_condvar_t *this);
/**
* Destroy a condvar and free its resources.
*/
void (*destroy)(rwlock_condvar_t *this);
};
/**
* Create a condvar instance.
*
* @return condvar instance
*/
rwlock_condvar_t *rwlock_condvar_create();
#endif /** RWLOCK_CONDVAR_H_ @} */
|