summaryrefslogtreecommitdiffstats
path: root/include/linux/sem_types.h
blob: 73df1971a7ae19816fe86f6ae594f9256c438fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_SEM_TYPES_H
#define _LINUX_SEM_TYPES_H

struct sem_undo_list;

struct sysv_sem {
#ifdef CONFIG_SYSVIPC
	struct sem_undo_list *undo_list;
#endif
};

#endif /* _LINUX_SEM_TYPES_H */