sys.h (960B)
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _LINUX_SYS_H 3#define _LINUX_SYS_H 4 5/* 6 * This file is no longer used or needed 7 */ 8 9/* 10 * These are system calls that will be removed at some time 11 * due to newer versions existing.. 12 * (please be careful - ibcs2 may need some of these). 13 */ 14#ifdef notdef 15#define _sys_waitpid _sys_old_syscall /* _sys_wait4 */ 16#define _sys_olduname _sys_old_syscall /* _sys_newuname */ 17#define _sys_uname _sys_old_syscall /* _sys_newuname */ 18#define _sys_stat _sys_old_syscall /* _sys_newstat */ 19#define _sys_fstat _sys_old_syscall /* _sys_newfstat */ 20#define _sys_lstat _sys_old_syscall /* _sys_newlstat */ 21#define _sys_signal _sys_old_syscall /* _sys_sigaction */ 22#define _sys_sgetmask _sys_old_syscall /* _sys_sigprocmask */ 23#define _sys_ssetmask _sys_old_syscall /* _sys_sigprocmask */ 24#endif 25 26/* 27 * These are system calls that haven't been implemented yet 28 * but have an entry in the table for future expansion.. 29 */ 30#endif