/* SPDX-License-Identifier: GPL-2.0 */ /* * Common syscall restarting data */ #ifndef __LINUX_RESTART_BLOCK_H #define __LINUX_RESTART_BLOCK_H #include <linux/compiler.h> #include <linux/types.h> struct __kernel_timespec; struct timespec; struct old_timespec32; struct pollfd; enum timespec_type { … }; /* * System call restart block. */ struct restart_block { … }; extern long do_no_restart_syscall(struct restart_block *parm); #endif /* __LINUX_RESTART_BLOCK_H */