[BACK]Return to linux_syscallargs.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / compat / linux / arch / powerpc

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/compat/linux/arch/powerpc/linux_syscallargs.h between version 1.50 and 1.50.2.1

version 1.50, 2010/07/07 01:31:54 version 1.50.2.1, 2011/06/06 09:07:26
Line 4 
Line 4 
  * System call argument lists.   * System call argument lists.
  *   *
  * DO NOT EDIT-- this file is automatically generated.   * DO NOT EDIT-- this file is automatically generated.
  * created from NetBSD: syscalls.master,v 1.45 2010/07/07 01:30:34 chs Exp   * created from NetBSD: syscalls.master,v 1.48 2011/05/31 21:38:00 njoly Exp
  */   */
   
 #ifndef _LINUX_SYS_SYSCALLARGS_H_  #ifndef _LINUX_SYS_SYSCALLARGS_H_
Line 27 
Line 27 
         }          }
   
 #undef check_syscall_args  #undef check_syscall_args
 #define check_syscall_args(call) \  #define check_syscall_args(call) /*LINTED*/ \
         typedef char call##_check_args[sizeof (struct call##_args) \          typedef char call##_check_args[sizeof (struct call##_args) \
                 <= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];                  <= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
   
Line 824  struct linux_sys_set_tid_address_args {
Line 824  struct linux_sys_set_tid_address_args {
 };  };
 check_syscall_args(linux_sys_set_tid_address)  check_syscall_args(linux_sys_set_tid_address)
   
   struct linux_sys_fadvise64_args {
           syscallarg(int) fd;
           syscallarg(linux_off_t) offset;
           syscallarg(size_t) len;
           syscallarg(int) advice;
   };
   check_syscall_args(linux_sys_fadvise64)
   
 struct linux_sys_exit_group_args {  struct linux_sys_exit_group_args {
         syscallarg(int) error_code;          syscallarg(int) error_code;
 };  };
Line 876  struct linux_sys_fstatfs64_args {
Line 884  struct linux_sys_fstatfs64_args {
 };  };
 check_syscall_args(linux_sys_fstatfs64)  check_syscall_args(linux_sys_fstatfs64)
   
   struct linux_sys_fadvise64_64_args {
           syscallarg(int) fd;
           syscallarg(linux_off_t) offset;
           syscallarg(linux_off_t) len;
           syscallarg(int) advice;
   };
   check_syscall_args(linux_sys_fadvise64_64)
   
 struct linux_sys_set_robust_list_args {  struct linux_sys_set_robust_list_args {
         syscallarg(struct linux_robust_list_head *) head;          syscallarg(struct linux_robust_list_head *) head;
         syscallarg(size_t) len;          syscallarg(size_t) len;
Line 889  struct linux_sys_get_robust_list_args {
Line 905  struct linux_sys_get_robust_list_args {
 };  };
 check_syscall_args(linux_sys_get_robust_list)  check_syscall_args(linux_sys_get_robust_list)
   
   struct linux_sys_dup3_args {
           syscallarg(int) from;
           syscallarg(int) to;
           syscallarg(int) flags;
   };
   check_syscall_args(linux_sys_dup3)
   
   struct linux_sys_pipe2_args {
           syscallarg(int *) pfds;
           syscallarg(int) flags;
   };
   check_syscall_args(linux_sys_pipe2)
   
 /*  /*
  * System call prototypes.   * System call prototypes.
  */   */
Line 1255  int linux_sys_sched_getaffinity(struct l
Line 1284  int linux_sys_sched_getaffinity(struct l
   
 int     linux_sys_set_tid_address(struct lwp *, const struct linux_sys_set_tid_address_args *, register_t *);  int     linux_sys_set_tid_address(struct lwp *, const struct linux_sys_set_tid_address_args *, register_t *);
   
   int     linux_sys_fadvise64(struct lwp *, const struct linux_sys_fadvise64_args *, register_t *);
   
 int     linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *);  int     linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *);
   
 int     linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *);  int     linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *);
Line 1271  int linux_sys_statfs64(struct lwp *, con
Line 1302  int linux_sys_statfs64(struct lwp *, con
   
 int     linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, register_t *);  int     linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, register_t *);
   
   int     linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
   
 int     linux_sys_set_robust_list(struct lwp *, const struct linux_sys_set_robust_list_args *, register_t *);  int     linux_sys_set_robust_list(struct lwp *, const struct linux_sys_set_robust_list_args *, register_t *);
   
 int     linux_sys_get_robust_list(struct lwp *, const struct linux_sys_get_robust_list_args *, register_t *);  int     linux_sys_get_robust_list(struct lwp *, const struct linux_sys_get_robust_list_args *, register_t *);
   
   int     linux_sys_dup3(struct lwp *, const struct linux_sys_dup3_args *, register_t *);
   
   int     linux_sys_pipe2(struct lwp *, const struct linux_sys_pipe2_args *, register_t *);
   
 #endif /* _LINUX_SYS_SYSCALLARGS_H_ */  #endif /* _LINUX_SYS_SYSCALLARGS_H_ */

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.50.2.1

CVSweb <webmaster@jp.NetBSD.org>