nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / sem.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_SEM_H
2#define _LINUX_SEM_H
3
60063497 4#include <linux/atomic.h>
380af1b3 5#include <linux/rcupdate.h>
31a7c474 6#include <linux/cache.h>
607ca46e 7#include <uapi/linux/sem.h>
1da177e4 8
8c65b4a6
TS
9struct task_struct;
10
1da177e4
LT
11/* One sem_array data structure for each set of semaphores in the system. */
12struct sem_array {
31a7c474
MS
13 struct kern_ipc_perm ____cacheline_aligned_in_smp
14 sem_perm; /* permissions .. see ipc.h */
1da177e4
LT
15 time_t sem_ctime; /* last change time */
16 struct sem *sem_base; /* ptr to first semaphore in array */
ab63bc97
MS
17 struct list_head pending_alter; /* pending operations */
18 /* that alter the array */
19 struct list_head pending_const; /* pending complex operations */
20 /* that do not alter semvals */
4daa28f6 21 struct list_head list_id; /* undo requests on this array */
b97e820f
MS
22 int sem_nsems; /* no. of semaphores in array */
23 int complex_count; /* pending complex operations */
1da177e4
LT
24};
25
f567a185
MS
26#ifdef CONFIG_SYSVIPC
27
1da177e4
LT
28struct sysv_sem {
29 struct sem_undo_list *undo_list;
30};
31
1da177e4
LT
32extern int copy_semundo(unsigned long clone_flags, struct task_struct *tsk);
33extern void exit_sem(struct task_struct *tsk);
34
35#else
f567a185
MS
36
37struct sysv_sem {
38 /* empty */
39};
40
1da177e4
LT
41static inline int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
42{
43 return 0;
44}
45
46static inline void exit_sem(struct task_struct *tsk)
47{
48 return;
49}
50#endif
51
1da177e4 52#endif /* _LINUX_SEM_H */