Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at ee9dce44362b2d8132c32964656ab6dff7dfbc6a 13 lines 234 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _LINUX_SEM_TYPES_H 3#define _LINUX_SEM_TYPES_H 4 5struct sem_undo_list; 6 7struct sysv_sem { 8#ifdef CONFIG_SYSVIPC 9 struct sem_undo_list *undo_list; 10#endif 11}; 12 13#endif /* _LINUX_SEM_TYPES_H */