/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_SEM_H #define _LINUX_SEM_H #include struct task_struct; struct sem_undo_list; #ifdef CONFIG_SYSVIPC struct sysv_sem { struct sem_undo_list *undo_list; }; extern int copy_semundo(unsigned long clone_flags, struct task_struct *tsk); extern void exit_sem(struct task_struct *tsk); #else struct sysv_sem { /* empty */ }; static inline int copy_semundo(unsigned long clone_flags, struct task_struct *tsk) { return 0; } static inline void exit_sem(struct task_struct *tsk) { return; } #endif #endif /* _LINUX_SEM_H */ 'cgit logo'/> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/soc/ti/ti_sci_pm_domains.c
AgeCommit message (Expand)Author
2017-08-18soc: ti: ti_sci_pm_domains: Populate name for genpdDave Gerlach
2017-04-24soc: pm-domain: Fix the mangled urlsSantosh Shilimkar
2017-04-04soc: ti: Add ti_sci_pm_domains driverDave Gerlach