sys.h 960 B

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