summaryrefslogtreecommitdiff
path: root/include/linux/srcu.h
blob: 75823cf207ea4ae4667a60c2d0efc6422ce47755 (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
#ifndef __TOOLS_LINUX_SRCU_H
#define __TOOLS_LINUX_SRCU_H

struct srcu_struct {
};

static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx) {}

static inline int srcu_read_lock(struct srcu_struct *ssp)
{
	return 0;
}

static inline bool poll_state_synchronize_srcu(struct srcu_struct *ssp, unsigned long cookie)
{
	return false;
}

static inline unsigned long start_poll_synchronize_srcu(struct srcu_struct *ssp)
{
	return 0;
}

static inline void cleanup_srcu_struct(struct srcu_struct *ssp) {}

static inline int init_srcu_struct(struct srcu_struct *ssp)
{
	return 0;
}

#endif /* __TOOLS_LINUX_SRCU_H */