mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
12 lines
214 B
C
12 lines
214 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_SCHED_SIGNAL_H
|
|
#define _LINUX_SCHED_SIGNAL_H
|
|
|
|
static inline int fatal_signal_pending(struct task_struct *p)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* _LINUX_SCHED_SIGNAL_H */
|
|
|