root/include/linux/sys.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_SYS_H
   2 #define _LINUX_SYS_H
   3 
   4 /*
   5  * system call entry points ... but not all are defined
   6  */
   7 #define NR_syscalls 256
   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 #ifdef __ELF__
  31 #define sys_quotactl    sys_ni_syscall
  32 #else
  33 #define _sys_quotactl   _sys_ni_syscall
  34 #endif
  35 
  36 #endif

/* [previous][next][first][last][top][bottom][index][help] */