]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/sem.h
Merge tag 'mlx5-updates-2017-06-27' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.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 {
60f3e00d 13 struct kern_ipc_perm sem_perm; /* permissions .. see ipc.h */
1da177e4
LT
14 time_t sem_ctime; /* last change time */
15 struct sem *sem_base; /* ptr to first semaphore in array */
1a82e9e1
MS
16 struct list_head pending_alter; /* pending operations */
17 /* that alter the array */
18 struct list_head pending_const; /* pending complex operations */
19 /* that do not alter semvals */
4daa28f6 20 struct list_head list_id; /* undo requests on this array */
b97e820f
MS
21 int sem_nsems; /* no. of semaphores in array */
22 int complex_count; /* pending complex operations */
9de5ab8a 23 unsigned int use_global_lock;/* >0: global lock required */
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 */