Regen for utimes(2) change.
This commit is contained in:
parent
769728743d
commit
507b03fc31
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.93 2014/05/17 09:25:06 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.94 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.87 2014/05/17 09:23:51 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.88 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -501,7 +501,7 @@
|
||||||
/* syscall: "setitimer" ret: "int" args: "int" "const struct itimerval50 *" "struct itimerval50 *" */
|
/* syscall: "setitimer" ret: "int" args: "int" "const struct itimerval50 *" "struct itimerval50 *" */
|
||||||
#define LINUX_SYS_setitimer 362
|
#define LINUX_SYS_setitimer 362
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 363
|
#define LINUX_SYS_utimes 363
|
||||||
|
|
||||||
/* syscall: "getrusage" ret: "int" args: "int" "struct rusage50 *" */
|
/* syscall: "getrusage" ret: "int" args: "int" "struct rusage50 *" */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.92 2014/05/17 09:25:06 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.93 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.87 2014/05/17 09:23:51 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.88 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -792,11 +792,7 @@ struct compat_50_sys_getitimer_args;
|
||||||
|
|
||||||
struct compat_50_sys_setitimer_args;
|
struct compat_50_sys_setitimer_args;
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct compat_50_sys_getrusage_args;
|
struct compat_50_sys_getrusage_args;
|
||||||
|
|
||||||
|
@ -1485,7 +1481,7 @@ int compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_a
|
||||||
|
|
||||||
int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
|
int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
|
int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.94 2014/05/17 09:25:06 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.95 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.87 2014/05/17 09:23:51 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.88 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.94 2014/05/17 09:25:06 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.95 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.93 2014/05/17 09:25:06 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.94 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.87 2014/05/17 09:23:51 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.88 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.93 2014/05/17 09:25:06 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.94 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include "opt_sysv.h"
|
#include "opt_sysv.h"
|
||||||
|
@ -796,8 +796,8 @@ struct sysent linux_sysent[] = {
|
||||||
(sy_call_t *)compat_50_sys_getitimer },/* 361 = getitimer */
|
(sy_call_t *)compat_50_sys_getitimer },/* 361 = getitimer */
|
||||||
{ ns(struct compat_50_sys_setitimer_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_setitimer_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)compat_50_sys_setitimer },/* 362 = setitimer */
|
(sy_call_t *)compat_50_sys_setitimer },/* 362 = setitimer */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 363 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 363 = utimes */
|
||||||
{ ns(struct compat_50_sys_getrusage_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_getrusage_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)compat_50_sys_getrusage },/* 364 = getrusage */
|
(sy_call_t *)compat_50_sys_getrusage },/* 364 = getrusage */
|
||||||
{ ns(struct linux_sys_wait4_args), SYCALL_ARG_PTR,
|
{ ns(struct linux_sys_wait4_args), SYCALL_ARG_PTR,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.53 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.51 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -591,7 +591,7 @@
|
||||||
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
||||||
#define LINUX_SYS_tgkill 234
|
#define LINUX_SYS_tgkill 234
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 235
|
#define LINUX_SYS_utimes 235
|
||||||
|
|
||||||
/* syscall: "openat" ret: "int" args: "int" "const char *" "int" "..." */
|
/* syscall: "openat" ret: "int" args: "int" "const char *" "int" "..." */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.53 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.50 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.51 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -892,11 +892,7 @@ struct linux_sys_tgkill_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(linux_sys_tgkill)
|
check_syscall_args(linux_sys_tgkill)
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(const char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct linux_sys_openat_args {
|
struct linux_sys_openat_args {
|
||||||
syscallarg(int) fd;
|
syscallarg(int) fd;
|
||||||
|
@ -1406,7 +1402,7 @@ int linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *,
|
||||||
|
|
||||||
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_openat(struct lwp *, const struct linux_sys_openat_args *, register_t *);
|
int linux_sys_openat(struct lwp *, const struct linux_sys_openat_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.53 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.51 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.52 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.53 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.53 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.51 2014/05/29 10:35:26 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.52 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.53 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include "opt_sysv.h"
|
#include "opt_sysv.h"
|
||||||
|
@ -548,8 +548,8 @@ struct sysent linux_sysent[] = {
|
||||||
linux_sys_nosys }, /* 233 = unimplemented epoll_ctl */
|
linux_sys_nosys }, /* 233 = unimplemented epoll_ctl */
|
||||||
{ ns(struct linux_sys_tgkill_args), 0,
|
{ ns(struct linux_sys_tgkill_args), 0,
|
||||||
(sy_call_t *)linux_sys_tgkill }, /* 234 = tgkill */
|
(sy_call_t *)linux_sys_tgkill }, /* 234 = tgkill */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 235 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 235 = utimes */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
linux_sys_nosys }, /* 236 = unimplemented vserver */
|
linux_sys_nosys }, /* 236 = unimplemented vserver */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.63 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.60 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -646,7 +646,7 @@
|
||||||
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
||||||
#define LINUX_SYS_tgkill 268
|
#define LINUX_SYS_tgkill 268
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 269
|
#define LINUX_SYS_utimes 269
|
||||||
|
|
||||||
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.63 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.59 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.60 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -958,11 +958,7 @@ struct linux_sys_tgkill_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(linux_sys_tgkill)
|
check_syscall_args(linux_sys_tgkill)
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(const char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct linux_sys_fadvise64_64_args {
|
struct linux_sys_fadvise64_64_args {
|
||||||
syscallarg(int) fd;
|
syscallarg(int) fd;
|
||||||
|
@ -1501,7 +1497,7 @@ int linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, r
|
||||||
|
|
||||||
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.63 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.60 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.62 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.63 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.63 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.60 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.62 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.63 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
|
@ -574,8 +574,8 @@ struct sysent linux_sysent[] = {
|
||||||
(sy_call_t *)linux_sys_fstatfs64 }, /* 267 = fstatfs64 */
|
(sy_call_t *)linux_sys_fstatfs64 }, /* 267 = fstatfs64 */
|
||||||
{ ns(struct linux_sys_tgkill_args), 0,
|
{ ns(struct linux_sys_tgkill_args), 0,
|
||||||
(sy_call_t *)linux_sys_tgkill }, /* 268 = tgkill */
|
(sy_call_t *)linux_sys_tgkill }, /* 268 = tgkill */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 269 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 269 = utimes */
|
||||||
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
||||||
(sy_call_t *)linux_sys_fadvise64_64 },/* 270 = fadvise64_64 */
|
(sy_call_t *)linux_sys_fadvise64_64 },/* 270 = fadvise64_64 */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.102 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.117 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -668,7 +668,7 @@
|
||||||
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
||||||
#define LINUX_SYS_tgkill 270
|
#define LINUX_SYS_tgkill 270
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 271
|
#define LINUX_SYS_utimes 271
|
||||||
|
|
||||||
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.102 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.116 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.117 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -1005,11 +1005,7 @@ struct linux_sys_tgkill_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(linux_sys_tgkill)
|
check_syscall_args(linux_sys_tgkill)
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(const char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct linux_sys_fadvise64_64_args {
|
struct linux_sys_fadvise64_64_args {
|
||||||
syscallarg(int) fd;
|
syscallarg(int) fd;
|
||||||
|
@ -1552,7 +1548,7 @@ int linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, r
|
||||||
|
|
||||||
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.102 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.103 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.117 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.102 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.103 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.102 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.117 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.101 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.102 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
|
@ -577,8 +577,8 @@ struct sysent linux_sysent[] = {
|
||||||
(sy_call_t *)linux_sys_fstatfs64 }, /* 269 = fstatfs64 */
|
(sy_call_t *)linux_sys_fstatfs64 }, /* 269 = fstatfs64 */
|
||||||
{ ns(struct linux_sys_tgkill_args), 0,
|
{ ns(struct linux_sys_tgkill_args), 0,
|
||||||
(sy_call_t *)linux_sys_tgkill }, /* 270 = tgkill */
|
(sy_call_t *)linux_sys_tgkill }, /* 270 = tgkill */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 271 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 271 = utimes */
|
||||||
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
||||||
(sy_call_t *)linux_sys_fadvise64_64 },/* 272 = fadvise64_64 */
|
(sy_call_t *)linux_sys_fadvise64_64 },/* 272 = fadvise64_64 */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.93 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.87 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -651,7 +651,7 @@
|
||||||
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
||||||
#define LINUX_SYS_tgkill 265
|
#define LINUX_SYS_tgkill 265
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 266
|
#define LINUX_SYS_utimes 266
|
||||||
|
|
||||||
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
/* syscall: "fadvise64_64" ret: "int" args: "int" "off_t" "off_t" "int" */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.91 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.92 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.86 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.87 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -952,11 +952,7 @@ struct linux_sys_tgkill_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(linux_sys_tgkill)
|
check_syscall_args(linux_sys_tgkill)
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(const char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct linux_sys_fadvise64_64_args {
|
struct linux_sys_fadvise64_64_args {
|
||||||
syscallarg(int) fd;
|
syscallarg(int) fd;
|
||||||
|
@ -1505,7 +1501,7 @@ int linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, r
|
||||||
|
|
||||||
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.93 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.87 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.92 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.93 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.93 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.87 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.92 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.93 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include "opt_compat_netbsd.h"
|
#include "opt_compat_netbsd.h"
|
||||||
|
@ -591,8 +591,8 @@ struct sysent linux_sysent[] = {
|
||||||
(sy_call_t *)linux_sys_fstatfs64 }, /* 264 = fstatfs64 */
|
(sy_call_t *)linux_sys_fstatfs64 }, /* 264 = fstatfs64 */
|
||||||
{ ns(struct linux_sys_tgkill_args), 0,
|
{ ns(struct linux_sys_tgkill_args), 0,
|
||||||
(sy_call_t *)linux_sys_tgkill }, /* 265 = tgkill */
|
(sy_call_t *)linux_sys_tgkill }, /* 265 = tgkill */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 266 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 266 = utimes */
|
||||||
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
{ ns(struct linux_sys_fadvise64_64_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG2_64 | SYCALL_ARG1_64,
|
||||||
(sy_call_t *)linux_sys_fadvise64_64 },/* 267 = fadvise64_64 */
|
(sy_call_t *)linux_sys_fadvise64_64 },/* 267 = fadvise64_64 */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscall.h,v 1.59 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscall.h,v 1.60 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call numbers.
|
* System call numbers.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.55 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALL_H_
|
#ifndef _LINUX_SYS_SYSCALL_H_
|
||||||
|
@ -625,7 +625,7 @@
|
||||||
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
/* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
|
||||||
#define LINUX_SYS_tgkill 266
|
#define LINUX_SYS_tgkill 266
|
||||||
|
|
||||||
/* syscall: "utimes" ret: "int" args: "const char *" "struct linux_timeval *" */
|
/* syscall: "utimes" ret: "int" args: "const char *" "const struct timeval50 *" */
|
||||||
#define LINUX_SYS_utimes 267
|
#define LINUX_SYS_utimes 267
|
||||||
|
|
||||||
/* syscall: "set_thread_area" ret: "int" args: "void *" */
|
/* syscall: "set_thread_area" ret: "int" args: "void *" */
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
/* $NetBSD: linux_syscallargs.h,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscallargs.h,v 1.59 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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.54 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.55 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
#ifndef _LINUX_SYS_SYSCALLARGS_H_
|
||||||
|
@ -919,11 +919,7 @@ struct linux_sys_tgkill_args {
|
||||||
};
|
};
|
||||||
check_syscall_args(linux_sys_tgkill)
|
check_syscall_args(linux_sys_tgkill)
|
||||||
|
|
||||||
struct linux_sys_utimes_args {
|
struct compat_50_sys_utimes_args;
|
||||||
syscallarg(const char *) path;
|
|
||||||
syscallarg(struct linux_timeval *) times;
|
|
||||||
};
|
|
||||||
check_syscall_args(linux_sys_utimes)
|
|
||||||
|
|
||||||
struct linux_sys_set_thread_area_args {
|
struct linux_sys_set_thread_area_args {
|
||||||
syscallarg(void *) tls;
|
syscallarg(void *) tls;
|
||||||
|
@ -1453,7 +1449,7 @@ int linux_sys_clock_nanosleep(struct lwp *, const struct linux_sys_clock_nanosle
|
||||||
|
|
||||||
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_utimes(struct lwp *, const struct linux_sys_utimes_args *, register_t *);
|
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
|
||||||
|
|
||||||
int linux_sys_set_thread_area(struct lwp *, const struct linux_sys_set_thread_area_args *, register_t *);
|
int linux_sys_set_thread_area(struct lwp *, const struct linux_sys_set_thread_area_args *, register_t *);
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_syscalls.c,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_syscalls.c,v 1.59 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call names.
|
* System call names.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.55 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.58 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.59 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#if defined(_KERNEL_OPT)
|
#if defined(_KERNEL_OPT)
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
/* $NetBSD: linux_sysent.c,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
|
/* $NetBSD: linux_sysent.c,v 1.59 2014/05/29 10:36:31 njoly Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System call switch table.
|
* System call switch table.
|
||||||
*
|
*
|
||||||
* DO NOT EDIT-- this file is automatically generated.
|
* DO NOT EDIT-- this file is automatically generated.
|
||||||
* created from NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp
|
* created from NetBSD: syscalls.master,v 1.55 2014/05/29 10:35:27 njoly Exp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.58 2014/05/20 17:26:04 njoly Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.59 2014/05/29 10:36:31 njoly Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/poll.h>
|
#include <sys/poll.h>
|
||||||
|
@ -564,8 +564,8 @@ struct sysent linux_sysent[] = {
|
||||||
(sy_call_t *)linux_sys_clock_nanosleep },/* 265 = clock_nanosleep */
|
(sy_call_t *)linux_sys_clock_nanosleep },/* 265 = clock_nanosleep */
|
||||||
{ ns(struct linux_sys_tgkill_args), 0,
|
{ ns(struct linux_sys_tgkill_args), 0,
|
||||||
(sy_call_t *)linux_sys_tgkill }, /* 266 = tgkill */
|
(sy_call_t *)linux_sys_tgkill }, /* 266 = tgkill */
|
||||||
{ ns(struct linux_sys_utimes_args), SYCALL_ARG_PTR,
|
{ ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
|
||||||
(sy_call_t *)linux_sys_utimes }, /* 267 = utimes */
|
(sy_call_t *)compat_50_sys_utimes },/* 267 = utimes */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
linux_sys_nosys }, /* 268 = unimplemented mbind */
|
linux_sys_nosys }, /* 268 = unimplemented mbind */
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
|
|
Loading…
Reference in New Issue