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

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/m68k/linux_syscallargs.h between version 1.107 and 1.107.2.2

version 1.107, 2020/04/26 19:20:19 version 1.107.2.2, 2020/12/17 03:14:35
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.95 2020/04/26 18:53:32 thorpej Exp   * created from NetBSD: syscalls.master,v 1.95.2.2 2020/12/17 03:14:15 thorpej Exp
  */   */
   
 #ifndef _LINUX_SYS_SYSCALLARGS_H_  #ifndef _LINUX_SYS_SYSCALLARGS_H_
Line 908  struct linux_sys_set_tid_address_args {
Line 908  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_timer_create_args {
           syscallarg(clockid_t) clockid;
           syscallarg(struct linux_sigevent *) evp;
           syscallarg(timer_t *) timerid;
   };
   check_syscall_args(linux_sys_timer_create)
   
   struct linux_sys_timer_settime_args {
           syscallarg(timer_t) timerid;
           syscallarg(int) flags;
           syscallarg(const struct linux_itimerspec *) tim;
           syscallarg(struct linux_itimerspec *) otim;
   };
   check_syscall_args(linux_sys_timer_settime)
   
   struct linux_sys_timer_gettime_args {
           syscallarg(timer_t) timerid;
           syscallarg(struct linux_itimerspec *) tim;
   };
   check_syscall_args(linux_sys_timer_gettime)
   
   struct sys_timer_getoverrun_args;
   
   struct sys_timer_delete_args;
   
 struct linux_sys_clock_settime_args {  struct linux_sys_clock_settime_args {
         syscallarg(clockid_t) which;          syscallarg(clockid_t) which;
         syscallarg(struct linux_timespec *) tp;          syscallarg(struct linux_timespec *) tp;
Line 1080  struct linux_sys_utimensat_args {
Line 1105  struct linux_sys_utimensat_args {
 };  };
 check_syscall_args(linux_sys_utimensat)  check_syscall_args(linux_sys_utimensat)
   
   struct linux_sys_timerfd_create_args {
           syscallarg(clockid_t) clock_id;
           syscallarg(int) flags;
   };
   check_syscall_args(linux_sys_timerfd_create)
   
   struct linux_sys_eventfd_args {
           syscallarg(unsigned int) initval;
   };
   check_syscall_args(linux_sys_eventfd)
   
 struct linux_sys_fallocate_args {  struct linux_sys_fallocate_args {
         syscallarg(int) fd;          syscallarg(int) fd;
         syscallarg(int) mode;          syscallarg(int) mode;
Line 1088  struct linux_sys_fallocate_args {
Line 1124  struct linux_sys_fallocate_args {
 };  };
 check_syscall_args(linux_sys_fallocate)  check_syscall_args(linux_sys_fallocate)
   
   struct linux_sys_timerfd_settime_args {
           syscallarg(int) fd;
           syscallarg(int) flags;
           syscallarg(const struct linux_itimerspec *) new_value;
           syscallarg(struct linux_itimerspec *) old_value;
   };
   check_syscall_args(linux_sys_timerfd_settime)
   
   struct linux_sys_timerfd_gettime_args {
           syscallarg(int) fd;
           syscallarg(struct linux_itimerspec *) curr_value;
   };
   check_syscall_args(linux_sys_timerfd_gettime)
   
   struct linux_sys_eventfd2_args {
           syscallarg(unsigned int) initval;
           syscallarg(int) flags;
   };
   check_syscall_args(linux_sys_eventfd2)
   
 struct linux_sys_dup3_args {  struct linux_sys_dup3_args {
         syscallarg(int) from;          syscallarg(int) from;
         syscallarg(int) to;          syscallarg(int) to;
Line 1101  struct linux_sys_pipe2_args {
Line 1157  struct linux_sys_pipe2_args {
 };  };
 check_syscall_args(linux_sys_pipe2)  check_syscall_args(linux_sys_pipe2)
   
   struct linux_sys_preadv_args {
           syscallarg(int) fd;
           syscallarg(const struct iovec *) iovp;
           syscallarg(int) iovcnt;
           syscallarg(unsigned long) off_lo;
           syscallarg(unsigned long) off_hi;
   };
   check_syscall_args(linux_sys_preadv)
   
   struct linux_sys_pwritev_args {
           syscallarg(int) fd;
           syscallarg(const struct iovcnt *) iovp;
           syscallarg(int) iovcnt;
           syscallarg(unsigned long) off_lo;
           syscallarg(unsigned long) off_hi;
   };
   check_syscall_args(linux_sys_pwritev)
   
 struct linux_sys_accept4_args {  struct linux_sys_accept4_args {
         syscallarg(int) s;          syscallarg(int) s;
         syscallarg(struct osockaddr *) name;          syscallarg(struct osockaddr *) name;
Line 1524  int linux_sys_fadvise64(struct lwp *, co
Line 1598  int linux_sys_fadvise64(struct lwp *, co
   
 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_timer_create(struct lwp *, const struct linux_sys_timer_create_args *, register_t *);
   
   int     linux_sys_timer_settime(struct lwp *, const struct linux_sys_timer_settime_args *, register_t *);
   
   int     linux_sys_timer_gettime(struct lwp *, const struct linux_sys_timer_gettime_args *, register_t *);
   
   int     sys_timer_getoverrun(struct lwp *, const struct sys_timer_getoverrun_args *, register_t *);
   
   int     sys_timer_delete(struct lwp *, const struct sys_timer_delete_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 *);
   
 int     linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *);  int     linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *);
Line 1580  int linux_sys_sched_getaffinity(struct l
Line 1664  int linux_sys_sched_getaffinity(struct l
   
 int     linux_sys_utimensat(struct lwp *, const struct linux_sys_utimensat_args *, register_t *);  int     linux_sys_utimensat(struct lwp *, const struct linux_sys_utimensat_args *, register_t *);
   
   int     linux_sys_timerfd_create(struct lwp *, const struct linux_sys_timerfd_create_args *, register_t *);
   
   int     linux_sys_eventfd(struct lwp *, const struct linux_sys_eventfd_args *, register_t *);
   
 int     linux_sys_fallocate(struct lwp *, const struct linux_sys_fallocate_args *, register_t *);  int     linux_sys_fallocate(struct lwp *, const struct linux_sys_fallocate_args *, register_t *);
   
   int     linux_sys_timerfd_settime(struct lwp *, const struct linux_sys_timerfd_settime_args *, register_t *);
   
   int     linux_sys_timerfd_gettime(struct lwp *, const struct linux_sys_timerfd_gettime_args *, register_t *);
   
   int     linux_sys_eventfd2(struct lwp *, const struct linux_sys_eventfd2_args *, register_t *);
   
 int     linux_sys_dup3(struct lwp *, const struct linux_sys_dup3_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 *);  int     linux_sys_pipe2(struct lwp *, const struct linux_sys_pipe2_args *, register_t *);
   
   int     linux_sys_preadv(struct lwp *, const struct linux_sys_preadv_args *, register_t *);
   
   int     linux_sys_pwritev(struct lwp *, const struct linux_sys_pwritev_args *, register_t *);
   
 int     linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *);  int     linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *);
   
 int     linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *);  int     linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *);

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.107.2.2

CVSweb <webmaster@jp.NetBSD.org>