blob: 968ba6fa828cf0d7b149c3f36fd6f7ec9a891773 (
plain) (
blame)
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
|
#ifndef LITMUS_LOCKING_H
#define LITMUS_LOCKING_H
#include <litmus/fdso.h>
struct litmus_lock_ops;
extern struct fdso_ops generic_lock_ops;
/* Generic base struct for LITMUS^RT userspace semaphores.
* This structure should be embedded in protocol-specific semaphores.
*/
struct litmus_lock {
struct litmus_lock_ops *ops;
int type;
};
struct litmus_lock_ops {
/* Current task tries to obtain / drop a reference to a lock.
* Optional methods, allowed by default. */
int (*open)(struct litmus_lock*, void* __user);
int (*close)(struct litmus_lock*);
/* Current tries to lock/unlock this lock (mandatory methods). */
int (*lock)(struct litmus_lock*);
int (*unlock)(struct litmus_lock*);
int (*dynamic_group_lock)(struct litmus_lock*, resource_mask_t);
int (*dynamic_group_unlock)(struct litmus_lock*, resource_mask_t);
/* The lock is no longer being referenced (mandatory method). */
void (*deallocate)(struct litmus_lock*);
};
static inline bool is_lock(struct od_table_entry* entry)
{
return entry->class == &generic_lock_ops;
}
static inline struct litmus_lock* get_lock(struct od_table_entry* entry)
{
BUG_ON(!is_lock(entry));
return (struct litmus_lock*) entry->obj->obj;
}
#endif
|