sys.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_SYS_H
  2. #define _LINUX_SYS_H
  3. /*
  4.  * system call entry points ... but not all are defined
  5.  */
  6. #define NR_syscalls 256
  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