Tue Apr 14 15:03:38 2015 UTC ()
Pull up following revision(s) (requested by khorben in ticket #1264):

include/unistd.h				1.144
sys/kern/init_sysent.c				regen
sys/kern/syscalls.c				regen
sys/kern/syscalls.master			1.272
sys/rump/include/rump/rump_syscalls.h		regen
sys/rump/librump/rumpkern/rump_syscalls.c	regen
sys/sys/syscall.h				regen
sys/sys/syscallargs.h				regen
sys/compat/netbds32/netbsd32_syscall.h		regen
sys/compat/netbds32/netbsd32_syscallargs.h	regen
sys/compat/netbds32/netbsd32_syscalls.c		regen
sys/compat/netbds32/netbsd32_sysent.c		regen
sys/compat/netbsd32/syscalls.master		1.102

	Fix return type of the readlinkat(2) syscall. PR#49684.


(msaitoh)
diff -r1.128 -r1.128.2.1 src/include/unistd.h
diff -r1.99.2.1 -r1.99.2.2 src/sys/compat/netbsd32/netbsd32_syscall.h
diff -r1.99.2.1 -r1.99.2.2 src/sys/compat/netbsd32/netbsd32_syscallargs.h
diff -r1.98.2.1 -r1.98.2.2 src/sys/compat/netbsd32/netbsd32_syscalls.c
diff -r1.98.2.1 -r1.98.2.2 src/sys/compat/netbsd32/netbsd32_sysent.c
diff -r1.91.2.1 -r1.91.2.2 src/sys/compat/netbsd32/syscalls.master
diff -r1.261 -r1.261.2.1 src/sys/kern/init_sysent.c
diff -r1.252 -r1.252.2.1 src/sys/kern/syscalls.c
diff -r1.254 -r1.254.2.1 src/sys/kern/syscalls.master
diff -r1.55 -r1.55.2.1 src/sys/rump/include/rump/rump_syscalls.h
diff -r1.77 -r1.77.2.1 src/sys/rump/librump/rumpkern/rump_syscalls.c
diff -r1.248 -r1.248.2.1 src/sys/sys/syscall.h
diff -r1.231 -r1.231.2.1 src/sys/sys/syscallargs.h

cvs diff -r1.128 -r1.128.2.1 src/include/unistd.h (expand / switch to unified diff)

--- src/include/unistd.h 2011/11/05 09:27:06 1.128
+++ src/include/unistd.h 2015/04/14 15:03:37 1.128.2.1
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: unistd.h,v 1.128 2011/11/05 09:27:06 joerg Exp $ */ 1/* $NetBSD: unistd.h,v 1.128.2.1 2015/04/14 15:03:37 msaitoh Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc. 4 * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Klaus Klein. 8 * by Klaus Klein.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -294,27 +294,27 @@ ssize_t pwrite(int, const void *, size_ @@ -294,27 +294,27 @@ ssize_t pwrite(int, const void *, size_
294/* 294/*
295 * X/Open Extended API set 2 (a.k.a. C063) 295 * X/Open Extended API set 2 (a.k.a. C063)
296 */ 296 */
297#if defined(_INCOMPLETE_XOPEN_C063) 297#if defined(_INCOMPLETE_XOPEN_C063)
298int linkat(int, const char *, int, const char *, int); 298int linkat(int, const char *, int, const char *, int);
299int renameat(int, const char *, int, const char *); 299int renameat(int, const char *, int, const char *);
300int mkfifoat(int, const char *, mode_t); 300int mkfifoat(int, const char *, mode_t);
301int mknodat(int, const char *, mode_t, uint32_t); 301int mknodat(int, const char *, mode_t, uint32_t);
302int mkdirat(int, const char *, mode_t); 302int mkdirat(int, const char *, mode_t);
303int faccessat(int, const char *, int, int); 303int faccessat(int, const char *, int, int);
304int fchmodat(int, const char *, mode_t, int); 304int fchmodat(int, const char *, mode_t, int);
305int fchownat(int, const char *, uid_t, gid_t, int); 305int fchownat(int, const char *, uid_t, gid_t, int);
306int fexecve(int, char * const *, char * const *); 306int fexecve(int, char * const *, char * const *);
307int readlinkat(int, const char *, char *, size_t); 307ssize_t readlinkat(int, const char *, char *, size_t);
308int symlinkat(const char *, int, const char *); 308int symlinkat(const char *, int, const char *);
309int unlinkat(int, const char *, int); 309int unlinkat(int, const char *, int);
310#endif 310#endif
311 311
312 312
313/* 313/*
314 * Implementation-defined extensions 314 * Implementation-defined extensions
315 */ 315 */
316#if defined(_NETBSD_SOURCE) 316#if defined(_NETBSD_SOURCE)
317int acct(const char *); 317int acct(const char *);
318int closefrom(int); 318int closefrom(int);
319int des_cipher(const char *, char *, long, int); 319int des_cipher(const char *, char *, long, int);
320int des_setkey(const char *); 320int des_setkey(const char *);

cvs diff -r1.99.2.1 -r1.99.2.2 src/sys/compat/netbsd32/netbsd32_syscall.h (expand / switch to unified diff)

--- src/sys/compat/netbsd32/netbsd32_syscall.h 2012/04/12 20:13:08 1.99.2.1
+++ src/sys/compat/netbsd32/netbsd32_syscall.h 2015/04/14 15:03:37 1.99.2.2
@@ -1,20 +1,20 @@ @@ -1,20 +1,20 @@
1/* $NetBSD: netbsd32_syscall.h,v 1.99.2.1 2012/04/12 20:13:08 riz Exp $ */ 1/* $NetBSD: netbsd32_syscall.h,v 1.99.2.2 2015/04/14 15:03:37 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call numbers. 4 * System call numbers.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD 7 * created from NetBSD: syscalls.master,v 1.91.2.1 2012/04/12 17:05:37 riz Exp
8 */ 8 */
9 9
10#ifndef _NETBSD32_SYS_SYSCALL_H_ 10#ifndef _NETBSD32_SYS_SYSCALL_H_
11#define _NETBSD32_SYS_SYSCALL_H_ 11#define _NETBSD32_SYS_SYSCALL_H_
12 12
13#define NETBSD32_SYS_MAXSYSARGS 8 13#define NETBSD32_SYS_MAXSYSARGS 8
14 14
15/* syscall: "netbsd32_syscall" ret: "int" args: "int" "..." */ 15/* syscall: "netbsd32_syscall" ret: "int" args: "int" "..." */
16#define NETBSD32_SYS_netbsd32_syscall 0 16#define NETBSD32_SYS_netbsd32_syscall 0
17 17
18/* syscall: "netbsd32_exit" ret: "void" args: "int" */ 18/* syscall: "netbsd32_exit" ret: "void" args: "int" */
19#define NETBSD32_SYS_netbsd32_exit 1 19#define NETBSD32_SYS_netbsd32_exit 1
20 20
@@ -1235,27 +1235,27 @@ @@ -1235,27 +1235,27 @@
1235 1235
1236/* syscall: "netbsd32_fexecve" ret: "int" args: "int" "netbsd32_charpp" "netbsd32_charpp" */ 1236/* syscall: "netbsd32_fexecve" ret: "int" args: "int" "netbsd32_charpp" "netbsd32_charpp" */
1237#define NETBSD32_SYS_netbsd32_fexecve 465 1237#define NETBSD32_SYS_netbsd32_fexecve 465
1238 1238
1239/* syscall: "netbsd32_fstatat" ret: "int" args: "int" "const netbsd32_charp" "netbsd32_statp_t" "int" */ 1239/* syscall: "netbsd32_fstatat" ret: "int" args: "int" "const netbsd32_charp" "netbsd32_statp_t" "int" */
1240#define NETBSD32_SYS_netbsd32_fstatat 466 1240#define NETBSD32_SYS_netbsd32_fstatat 466
1241 1241
1242/* syscall: "netbsd32_utimensat" ret: "int" args: "int" "const netbsd32_charp" "const netbsd32_timespecp_t" "int" */ 1242/* syscall: "netbsd32_utimensat" ret: "int" args: "int" "const netbsd32_charp" "const netbsd32_timespecp_t" "int" */
1243#define NETBSD32_SYS_netbsd32_utimensat 467 1243#define NETBSD32_SYS_netbsd32_utimensat 467
1244 1244
1245/* syscall: "netbsd32_openat" ret: "int" args: "int" "const netbsd32_charp" "int" "..." */ 1245/* syscall: "netbsd32_openat" ret: "int" args: "int" "const netbsd32_charp" "int" "..." */
1246#define NETBSD32_SYS_netbsd32_openat 468 1246#define NETBSD32_SYS_netbsd32_openat 468
1247 1247
1248/* syscall: "netbsd32_readlinkat" ret: "int" args: "int" "const netbsd32_charp" "netbsd32_charp" "size_t" */ 1248/* syscall: "netbsd32_readlinkat" ret: "netbsd32_ssize_t" args: "int" "const netbsd32_charp" "netbsd32_charp" "size_t" */
1249#define NETBSD32_SYS_netbsd32_readlinkat 469 1249#define NETBSD32_SYS_netbsd32_readlinkat 469
1250 1250
1251/* syscall: "netbsd32_symlinkat" ret: "int" args: "const netbsd32_charp" "int" "const netbsd32_charp" */ 1251/* syscall: "netbsd32_symlinkat" ret: "int" args: "const netbsd32_charp" "int" "const netbsd32_charp" */
1252#define NETBSD32_SYS_netbsd32_symlinkat 470 1252#define NETBSD32_SYS_netbsd32_symlinkat 470
1253 1253
1254/* syscall: "netbsd32_unlinkat" ret: "int" args: "int" "const netbsd32_charp" "int" */ 1254/* syscall: "netbsd32_unlinkat" ret: "int" args: "int" "const netbsd32_charp" "int" */
1255#define NETBSD32_SYS_netbsd32_unlinkat 471 1255#define NETBSD32_SYS_netbsd32_unlinkat 471
1256 1256
1257/* syscall: "netbsd32_futimens" ret: "int" args: "int" "const netbsd32_timespecp_t" */ 1257/* syscall: "netbsd32_futimens" ret: "int" args: "int" "const netbsd32_timespecp_t" */
1258#define NETBSD32_SYS_netbsd32_futimens 472 1258#define NETBSD32_SYS_netbsd32_futimens 472
1259 1259
1260/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */ 1260/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
1261#define NETBSD32_SYS_netbsd32___quotactl 473 1261#define NETBSD32_SYS_netbsd32___quotactl 473

cvs diff -r1.99.2.1 -r1.99.2.2 src/sys/compat/netbsd32/netbsd32_syscallargs.h (expand / switch to unified diff)

--- src/sys/compat/netbsd32/netbsd32_syscallargs.h 2012/04/12 20:13:09 1.99.2.1
+++ src/sys/compat/netbsd32/netbsd32_syscallargs.h 2015/04/14 15:03:37 1.99.2.2
@@ -1,20 +1,20 @@ @@ -1,20 +1,20 @@
1/* $NetBSD: netbsd32_syscallargs.h,v 1.99.2.1 2012/04/12 20:13:09 riz Exp $ */ 1/* $NetBSD: netbsd32_syscallargs.h,v 1.99.2.2 2015/04/14 15:03:37 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call argument lists. 4 * System call argument lists.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD 7 * created from NetBSD: syscalls.master,v 1.91.2.1 2012/04/12 17:05:37 riz Exp
8 */ 8 */
9 9
10#ifndef _NETBSD32_SYS_SYSCALLARGS_H_ 10#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
11#define _NETBSD32_SYS_SYSCALLARGS_H_ 11#define _NETBSD32_SYS_SYSCALLARGS_H_
12 12
13#define NETBSD32_SYS_MAXSYSARGS 8 13#define NETBSD32_SYS_MAXSYSARGS 8
14 14
15#undef syscallarg 15#undef syscallarg
16#define syscallarg(x) \ 16#define syscallarg(x) \
17 union { \ 17 union { \
18 register32_t pad; \ 18 register32_t pad; \
19 struct { x datum; } le; \ 19 struct { x datum; } le; \
20 struct { /* LINTED zero array dimension */ \ 20 struct { /* LINTED zero array dimension */ \

cvs diff -r1.98.2.1 -r1.98.2.2 src/sys/compat/netbsd32/netbsd32_syscalls.c (expand / switch to unified diff)

--- src/sys/compat/netbsd32/netbsd32_syscalls.c 2012/04/12 20:13:09 1.98.2.1
+++ src/sys/compat/netbsd32/netbsd32_syscalls.c 2015/04/14 15:03:37 1.98.2.2
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1/* $NetBSD: netbsd32_syscalls.c,v 1.98.2.1 2012/04/12 20:13:09 riz Exp $ */ 1/* $NetBSD: netbsd32_syscalls.c,v 1.98.2.2 2015/04/14 15:03:37 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call names. 4 * System call names.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD 7 * created from NetBSD: syscalls.master,v 1.91.2.1 2012/04/12 17:05:37 riz Exp
8 */ 8 */
9 9
10#include <sys/cdefs.h> 10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.98.2.1 2012/04/12 20:13:09 riz Exp $"); 11__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.98.2.2 2015/04/14 15:03:37 msaitoh Exp $");
12 12
13#if defined(_KERNEL_OPT) 13#if defined(_KERNEL_OPT)
14#if defined(_KERNEL_OPT) 14#if defined(_KERNEL_OPT)
15#include "opt_compat_netbsd.h" 15#include "opt_compat_netbsd.h"
16#include "opt_ntp.h" 16#include "opt_ntp.h"
17#include "opt_sysv.h" 17#include "opt_sysv.h"
18#include "opt_compat_43.h" 18#include "opt_compat_43.h"
19#include "opt_posix.h" 19#include "opt_posix.h"
20#endif 20#endif
21#include <sys/param.h> 21#include <sys/param.h>
22#include <sys/systm.h> 22#include <sys/systm.h>
23#include <sys/signal.h> 23#include <sys/signal.h>
24#include <sys/mount.h> 24#include <sys/mount.h>

cvs diff -r1.98.2.1 -r1.98.2.2 src/sys/compat/netbsd32/netbsd32_sysent.c (expand / switch to unified diff)

--- src/sys/compat/netbsd32/netbsd32_sysent.c 2012/04/12 20:13:09 1.98.2.1
+++ src/sys/compat/netbsd32/netbsd32_sysent.c 2015/04/14 15:03:37 1.98.2.2
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1/* $NetBSD: netbsd32_sysent.c,v 1.98.2.1 2012/04/12 20:13:09 riz Exp $ */ 1/* $NetBSD: netbsd32_sysent.c,v 1.98.2.2 2015/04/14 15:03:37 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call switch table. 4 * System call switch table.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD 7 * created from NetBSD: syscalls.master,v 1.91.2.1 2012/04/12 17:05:37 riz Exp
8 */ 8 */
9 9
10#include <sys/cdefs.h> 10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.98.2.1 2012/04/12 20:13:09 riz Exp $"); 11__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.98.2.2 2015/04/14 15:03:37 msaitoh Exp $");
12 12
13#if defined(_KERNEL_OPT) 13#if defined(_KERNEL_OPT)
14#include "opt_compat_netbsd.h" 14#include "opt_compat_netbsd.h"
15#include "opt_ntp.h" 15#include "opt_ntp.h"
16#include "opt_sysv.h" 16#include "opt_sysv.h"
17#include "opt_compat_43.h" 17#include "opt_compat_43.h"
18#include "opt_posix.h" 18#include "opt_posix.h"
19#endif 19#endif
20#include <sys/param.h> 20#include <sys/param.h>
21#include <sys/systm.h> 21#include <sys/systm.h>
22#include <sys/signal.h> 22#include <sys/signal.h>
23#include <sys/mount.h> 23#include <sys/mount.h>
24#include <sys/syscallargs.h> 24#include <sys/syscallargs.h>

cvs diff -r1.91.2.1 -r1.91.2.2 src/sys/compat/netbsd32/syscalls.master (expand / switch to unified diff)

--- src/sys/compat/netbsd32/syscalls.master 2012/04/12 17:05:37 1.91.2.1
+++ src/sys/compat/netbsd32/syscalls.master 2015/04/14 15:03:37 1.91.2.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1 $NetBSD: syscalls.master,v 1.91.2.1 2012/04/12 17:05:37 riz Exp $ 1 $NetBSD: syscalls.master,v 1.91.2.2 2015/04/14 15:03:37 msaitoh Exp $
2 2
3; from: NetBSD: syscalls.master,v 1.81 1998/07/05 08:49:50 jonathan Exp 3; from: NetBSD: syscalls.master,v 1.81 1998/07/05 08:49:50 jonathan Exp
4; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 4; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
5 5
6; NetBSD system call name/number "master" file. 6; NetBSD system call name/number "master" file.
7; (See syscalls.conf to see what it is processed into.) 7; (See syscalls.conf to see what it is processed into.)
8; 8;
9; Fields: number type [type-dependent ...] 9; Fields: number type [type-dependent ...]
10; number system call number, must be in order 10; number system call number, must be in order
11; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of 11; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of
12; the compatibility options defined in syscalls.conf. 12; the compatibility options defined in syscalls.conf.
13; 13;
14; types: 14; types:
@@ -1015,27 +1015,27 @@ @@ -1015,27 +1015,27 @@
1015 netbsd32_charpp envp); } 1015 netbsd32_charpp envp); }
1016466 STD { int|netbsd32||fstatat(int fd, \ 1016466 STD { int|netbsd32||fstatat(int fd, \
1017 const netbsd32_charp path, \ 1017 const netbsd32_charp path, \
1018 netbsd32_statp_t buf, \ 1018 netbsd32_statp_t buf, \
1019 int flag); } 1019 int flag); }
1020467 STD { int|netbsd32||utimensat(int fd, \ 1020467 STD { int|netbsd32||utimensat(int fd, \
1021 const netbsd32_charp path, \ 1021 const netbsd32_charp path, \
1022 const netbsd32_timespecp_t tptr, \ 1022 const netbsd32_timespecp_t tptr, \
1023 int flag); } 1023 int flag); }
1024468 STD { int|netbsd32||openat(int fd, \ 1024468 STD { int|netbsd32||openat(int fd, \
1025 const netbsd32_charp path, \ 1025 const netbsd32_charp path, \
1026 int oflags, ... \ 1026 int oflags, ... \
1027 mode_t mode); } 1027 mode_t mode); }
1028469 STD { int|netbsd32||readlinkat(int fd, \ 1028469 STD { netbsd32_ssize_t|netbsd32||readlinkat(int fd, \
1029 const netbsd32_charp path, \ 1029 const netbsd32_charp path, \
1030 netbsd32_charp buf, \ 1030 netbsd32_charp buf, \
1031 size_t bufsize); } 1031 size_t bufsize); }
1032470 STD { int|netbsd32||symlinkat(const netbsd32_charp path1, \ 1032470 STD { int|netbsd32||symlinkat(const netbsd32_charp path1, \
1033 int fd, \ 1033 int fd, \
1034 const netbsd32_charp path2); } 1034 const netbsd32_charp path2); }
1035471 STD { int|netbsd32||unlinkat(int fd, \ 1035471 STD { int|netbsd32||unlinkat(int fd, \
1036 const netbsd32_charp path, \ 1036 const netbsd32_charp path, \
1037 int flag); } 1037 int flag); }
1038472 STD { int|netbsd32||futimens(int fd, \ 1038472 STD { int|netbsd32||futimens(int fd, \
1039 const netbsd32_timespecp_t tptr); } 1039 const netbsd32_timespecp_t tptr); }
1040473 STD { int|netbsd32||__quotactl(const netbsd32_charp path, \ 1040473 STD { int|netbsd32||__quotactl(const netbsd32_charp path, \
1041 netbsd32_voidp args); } 1041 netbsd32_voidp args); }

cvs diff -r1.261 -r1.261.2.1 src/sys/kern/init_sysent.c (expand / switch to unified diff)

--- src/sys/kern/init_sysent.c 2012/02/11 23:18:13 1.261
+++ src/sys/kern/init_sysent.c 2015/04/14 15:03:38 1.261.2.1
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1/* $NetBSD: init_sysent.c,v 1.261 2012/02/11 23:18:13 martin Exp $ */ 1/* $NetBSD: init_sysent.c,v 1.261.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call switch table. 4 * System call switch table.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#include <sys/cdefs.h> 10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.261 2012/02/11 23:18:13 martin Exp $"); 11__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.261.2.1 2015/04/14 15:03:38 msaitoh Exp $");
12 12
13#include "opt_modular.h" 13#include "opt_modular.h"
14#include "opt_ntp.h" 14#include "opt_ntp.h"
15#include "opt_sysv.h" 15#include "opt_sysv.h"
16#include <sys/param.h> 16#include <sys/param.h>
17#include <sys/systm.h> 17#include <sys/systm.h>
18#include <sys/signal.h> 18#include <sys/signal.h>
19#include <sys/socket.h> 19#include <sys/socket.h>
20#include <sys/mount.h> 20#include <sys/mount.h>
21#include <sys/sched.h> 21#include <sys/sched.h>
22#include <sys/syscallargs.h> 22#include <sys/syscallargs.h>
23 23
24#ifdef COMPAT_43 24#ifdef COMPAT_43

cvs diff -r1.252 -r1.252.2.1 src/sys/kern/syscalls.c (expand / switch to unified diff)

--- src/sys/kern/syscalls.c 2012/02/11 23:18:13 1.252
+++ src/sys/kern/syscalls.c 2015/04/14 15:03:38 1.252.2.1
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1/* $NetBSD: syscalls.c,v 1.252 2012/02/11 23:18:13 martin Exp $ */ 1/* $NetBSD: syscalls.c,v 1.252.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call names. 4 * System call names.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#include <sys/cdefs.h> 10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.252 2012/02/11 23:18:13 martin Exp $"); 11__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.252.2.1 2015/04/14 15:03:38 msaitoh Exp $");
12 12
13#if defined(_KERNEL_OPT) 13#if defined(_KERNEL_OPT)
14#include "opt_modular.h" 14#include "opt_modular.h"
15#include "opt_ntp.h" 15#include "opt_ntp.h"
16#include "opt_sysv.h" 16#include "opt_sysv.h"
17#include <sys/param.h> 17#include <sys/param.h>
18#include <sys/systm.h> 18#include <sys/systm.h>
19#include <sys/signal.h> 19#include <sys/signal.h>
20#include <sys/socket.h> 20#include <sys/socket.h>
21#include <sys/mount.h> 21#include <sys/mount.h>
22#include <sys/sched.h> 22#include <sys/sched.h>
23#include <sys/syscallargs.h> 23#include <sys/syscallargs.h>
24#endif /* _KERNEL_OPT */ 24#endif /* _KERNEL_OPT */

cvs diff -r1.254 -r1.254.2.1 src/sys/kern/syscalls.master (expand / switch to unified diff)

--- src/sys/kern/syscalls.master 2012/02/11 23:16:17 1.254
+++ src/sys/kern/syscalls.master 2015/04/14 15:03:38 1.254.2.1
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1 $NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp $ 1 $NetBSD: syscalls.master,v 1.254.2.1 2015/04/14 15:03:38 msaitoh Exp $
2 2
3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
4 4
5; NetBSD system call name/number "master" file. 5; NetBSD system call name/number "master" file.
6; (See syscalls.conf to see what it is processed into.) 6; (See syscalls.conf to see what it is processed into.)
7; 7;
8; Fields: number type [type-dependent ...] 8; Fields: number type [type-dependent ...]
9; number system call number, must be in order 9; number system call number, must be in order
10; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of 10; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of
11; the compatibility options defined in syscalls.conf. 11; the compatibility options defined in syscalls.conf.
12; 12;
13; Optional fields are specified after the type field 13; Optional fields are specified after the type field
14; (NOTE! they *must* be specified in this order): 14; (NOTE! they *must* be specified in this order):
@@ -907,27 +907,27 @@ @@ -907,27 +907,27 @@
907 int amode, int flag); } 907 int amode, int flag); }
908463 STD RUMP { int|sys||fchmodat(int fd, const char *path, \ 908463 STD RUMP { int|sys||fchmodat(int fd, const char *path, \
909 mode_t mode, int flag); } 909 mode_t mode, int flag); }
910464 STD RUMP { int|sys||fchownat(int fd, const char *path, \ 910464 STD RUMP { int|sys||fchownat(int fd, const char *path, \
911 uid_t owner, gid_t group, int flag); } 911 uid_t owner, gid_t group, int flag); }
912465 STD RUMP { int|sys||fexecve(int fd, \ 912465 STD RUMP { int|sys||fexecve(int fd, \
913 char * const *argp, char * const *envp); } 913 char * const *argp, char * const *envp); }
914466 STD RUMP { int|sys||fstatat(int fd, const char *path, \ 914466 STD RUMP { int|sys||fstatat(int fd, const char *path, \
915 struct stat *buf, int flag); } 915 struct stat *buf, int flag); }
916467 STD RUMP { int|sys||utimensat(int fd, const char *path, \ 916467 STD RUMP { int|sys||utimensat(int fd, const char *path, \
917 const struct timespec *tptr, int flag); } 917 const struct timespec *tptr, int flag); }
918468 STD RUMP { int|sys||openat(int fd, const char *path, \ 918468 STD RUMP { int|sys||openat(int fd, const char *path, \
919 int oflags, ... mode_t mode); } 919 int oflags, ... mode_t mode); }
920469 STD RUMP { int|sys||readlinkat(int fd, const char *path, \ 920469 STD RUMP { ssize_t|sys||readlinkat(int fd, const char *path, \
921 char *buf, size_t bufsize); } 921 char *buf, size_t bufsize); }
922470 STD RUMP { int|sys||symlinkat(const char *path1, int fd, \ 922470 STD RUMP { int|sys||symlinkat(const char *path1, int fd, \
923 const char *path2); } 923 const char *path2); }
924471 STD RUMP { int|sys||unlinkat(int fd, const char *path, \ 924471 STD RUMP { int|sys||unlinkat(int fd, const char *path, \
925 int flag); } 925 int flag); }
926472 STD RUMP { int|sys||futimens(int fd, \ 926472 STD RUMP { int|sys||futimens(int fd, \
927 const struct timespec *tptr); } 927 const struct timespec *tptr); }
928473 STD RUMP { int|sys||__quotactl(const char *path, \ 928473 STD RUMP { int|sys||__quotactl(const char *path, \
929 struct quotactl_args *args); } 929 struct quotactl_args *args); }
930474 NOERR { int|sys||posix_spawn(pid_t *pid, const char *path, \ 930474 NOERR { int|sys||posix_spawn(pid_t *pid, const char *path, \
931 const struct posix_spawn_file_actions *file_actions, \ 931 const struct posix_spawn_file_actions *file_actions, \
932 const struct posix_spawnattr *attrp, \ 932 const struct posix_spawnattr *attrp, \
933 char *const *argv, char *const *envp); } 933 char *const *argv, char *const *envp); }

cvs diff -r1.55 -r1.55.2.1 src/sys/rump/include/rump/rump_syscalls.h (expand / switch to unified diff)

--- src/sys/rump/include/rump/rump_syscalls.h 2012/02/11 23:18:13 1.55
+++ src/sys/rump/include/rump/rump_syscalls.h 2015/04/14 15:03:38 1.55.2.1
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: rump_syscalls.h,v 1.55 2012/02/11 23:18:13 martin Exp $ */ 1/* $NetBSD: rump_syscalls.h,v 1.55.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call protos in rump namespace. 4 * System call protos in rump namespace.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#ifndef _RUMP_RUMP_SYSCALLS_H_ 10#ifndef _RUMP_RUMP_SYSCALLS_H_
11#define _RUMP_RUMP_SYSCALLS_H_ 11#define _RUMP_RUMP_SYSCALLS_H_
12 12
13#ifdef _KERNEL 13#ifdef _KERNEL
14#error Interface not supported inside kernel 14#error Interface not supported inside kernel
@@ -873,21 +873,21 @@ int rump_sys_kqueue1(int) __RENAME(RUMP_ @@ -873,21 +873,21 @@ int rump_sys_kqueue1(int) __RENAME(RUMP_
873int rump_sys_paccept(int, struct sockaddr *, socklen_t *, const sigset_t *, int) __RENAME(RUMP_SYS_RENAME_PACCEPT); 873int rump_sys_paccept(int, struct sockaddr *, socklen_t *, const sigset_t *, int) __RENAME(RUMP_SYS_RENAME_PACCEPT);
874int rump_sys_linkat(int, const char *, int, const char *, int) __RENAME(RUMP_SYS_RENAME_LINKAT); 874int rump_sys_linkat(int, const char *, int, const char *, int) __RENAME(RUMP_SYS_RENAME_LINKAT);
875int rump_sys_renameat(int, const char *, int, const char *) __RENAME(RUMP_SYS_RENAME_RENAMEAT); 875int rump_sys_renameat(int, const char *, int, const char *) __RENAME(RUMP_SYS_RENAME_RENAMEAT);
876int rump_sys_mkfifoat(int, const char *, mode_t) __RENAME(RUMP_SYS_RENAME_MKFIFOAT); 876int rump_sys_mkfifoat(int, const char *, mode_t) __RENAME(RUMP_SYS_RENAME_MKFIFOAT);
877int rump_sys_mknodat(int, const char *, mode_t, uint32_t) __RENAME(RUMP_SYS_RENAME_MKNODAT); 877int rump_sys_mknodat(int, const char *, mode_t, uint32_t) __RENAME(RUMP_SYS_RENAME_MKNODAT);
878int rump_sys_mkdirat(int, const char *, mode_t) __RENAME(RUMP_SYS_RENAME_MKDIRAT); 878int rump_sys_mkdirat(int, const char *, mode_t) __RENAME(RUMP_SYS_RENAME_MKDIRAT);
879int rump_sys_faccessat(int, const char *, int, int) __RENAME(RUMP_SYS_RENAME_FACCESSAT); 879int rump_sys_faccessat(int, const char *, int, int) __RENAME(RUMP_SYS_RENAME_FACCESSAT);
880int rump_sys_fchmodat(int, const char *, mode_t, int) __RENAME(RUMP_SYS_RENAME_FCHMODAT); 880int rump_sys_fchmodat(int, const char *, mode_t, int) __RENAME(RUMP_SYS_RENAME_FCHMODAT);
881int rump_sys_fchownat(int, const char *, uid_t, gid_t, int) __RENAME(RUMP_SYS_RENAME_FCHOWNAT); 881int rump_sys_fchownat(int, const char *, uid_t, gid_t, int) __RENAME(RUMP_SYS_RENAME_FCHOWNAT);
882int rump_sys_fexecve(int, char *const *, char *const *) __RENAME(RUMP_SYS_RENAME_FEXECVE); 882int rump_sys_fexecve(int, char *const *, char *const *) __RENAME(RUMP_SYS_RENAME_FEXECVE);
883int rump_sys_fstatat(int, const char *, struct stat *, int) __RENAME(RUMP_SYS_RENAME_FSTATAT); 883int rump_sys_fstatat(int, const char *, struct stat *, int) __RENAME(RUMP_SYS_RENAME_FSTATAT);
884int rump_sys_utimensat(int, const char *, const struct timespec *, int) __RENAME(RUMP_SYS_RENAME_UTIMENSAT); 884int rump_sys_utimensat(int, const char *, const struct timespec *, int) __RENAME(RUMP_SYS_RENAME_UTIMENSAT);
885int rump_sys_openat(int, const char *, int, ...) __RENAME(RUMP_SYS_RENAME_OPENAT); 885int rump_sys_openat(int, const char *, int, ...) __RENAME(RUMP_SYS_RENAME_OPENAT);
886int rump_sys_readlinkat(int, const char *, char *, size_t) __RENAME(RUMP_SYS_RENAME_READLINKAT); 886ssize_t rump_sys_readlinkat(int, const char *, char *, size_t) __RENAME(RUMP_SYS_RENAME_READLINKAT);
887int rump_sys_symlinkat(const char *, int, const char *) __RENAME(RUMP_SYS_RENAME_SYMLINKAT); 887int rump_sys_symlinkat(const char *, int, const char *) __RENAME(RUMP_SYS_RENAME_SYMLINKAT);
888int rump_sys_unlinkat(int, const char *, int) __RENAME(RUMP_SYS_RENAME_UNLINKAT); 888int rump_sys_unlinkat(int, const char *, int) __RENAME(RUMP_SYS_RENAME_UNLINKAT);
889int rump_sys_futimens(int, const struct timespec *) __RENAME(RUMP_SYS_RENAME_FUTIMENS); 889int rump_sys_futimens(int, const struct timespec *) __RENAME(RUMP_SYS_RENAME_FUTIMENS);
890int rump_sys___quotactl(const char *, struct quotactl_args *) __RENAME(RUMP_SYS_RENAME___QUOTACTL); 890int rump_sys___quotactl(const char *, struct quotactl_args *) __RENAME(RUMP_SYS_RENAME___QUOTACTL);
891int rump_sys_pipe(int *); 891int rump_sys_pipe(int *);
892 892
893#endif /* _RUMP_RUMP_SYSCALLS_H_ */ 893#endif /* _RUMP_RUMP_SYSCALLS_H_ */

cvs diff -r1.77 -r1.77.2.1 src/sys/rump/librump/rumpkern/rump_syscalls.c (expand / switch to unified diff)

--- src/sys/rump/librump/rumpkern/rump_syscalls.c 2012/02/11 23:18:14 1.77
+++ src/sys/rump/librump/rumpkern/rump_syscalls.c 2015/04/14 15:03:38 1.77.2.1
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1/* $NetBSD: rump_syscalls.c,v 1.77 2012/02/11 23:18:14 martin Exp $ */ 1/* $NetBSD: rump_syscalls.c,v 1.77.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call vector and marshalling for rump. 4 * System call vector and marshalling for rump.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#include <sys/cdefs.h> 10#include <sys/cdefs.h>
11__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.77 2012/02/11 23:18:14 martin Exp $"); 11__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.77.2.1 2015/04/14 15:03:38 msaitoh Exp $");
12 12
13#include <sys/param.h> 13#include <sys/param.h>
14#include <sys/fstypes.h> 14#include <sys/fstypes.h>
15#include <sys/proc.h> 15#include <sys/proc.h>
16#ifdef RUMP_CLIENT 16#ifdef RUMP_CLIENT
17#include <srcsys/syscall.h> 17#include <srcsys/syscall.h>
18#include <srcsys/syscallargs.h> 18#include <srcsys/syscallargs.h>
19 19
20#include <errno.h> 20#include <errno.h>
21#include <rump/rumpclient.h> 21#include <rump/rumpclient.h>
22 22
23#define rsys_syscall(num, data, dlen, retval) \ 23#define rsys_syscall(num, data, dlen, retval) \
24 rumpclient_syscall(num, data, dlen, retval) 24 rumpclient_syscall(num, data, dlen, retval)
@@ -4398,45 +4398,45 @@ rump___sysimpl_openat(int fd, const char @@ -4398,45 +4398,45 @@ rump___sysimpl_openat(int fd, const char
4398 4398
4399 error = rsys_syscall(SYS_openat, &callarg, sizeof(callarg), retval); 4399 error = rsys_syscall(SYS_openat, &callarg, sizeof(callarg), retval);
4400 rsys_seterrno(error); 4400 rsys_seterrno(error);
4401 if (error == 0) { 4401 if (error == 0) {
4402 if (sizeof(int) > sizeof(register_t)) 4402 if (sizeof(int) > sizeof(register_t))
4403 rv = *(int *)retval; 4403 rv = *(int *)retval;
4404 else 4404 else
4405 rv = *retval; 4405 rv = *retval;
4406 } 4406 }
4407 return rv; 4407 return rv;
4408} 4408}
4409rsys_alias(sys_openat,rump_enosys) 4409rsys_alias(sys_openat,rump_enosys)
4410 4410
4411int rump___sysimpl_readlinkat(int, const char *, char *, size_t); 4411ssize_t rump___sysimpl_readlinkat(int, const char *, char *, size_t);
4412int 4412ssize_t
4413rump___sysimpl_readlinkat(int fd, const char * path, char * buf, size_t bufsize) 4413rump___sysimpl_readlinkat(int fd, const char * path, char * buf, size_t bufsize)
4414{ 4414{
4415 register_t retval[2] = {0, 0}; 4415 register_t retval[2] = {0, 0};
4416 int error = 0; 4416 int error = 0;
4417 int rv = -1; 4417 ssize_t rv = -1;
4418 struct sys_readlinkat_args callarg; 4418 struct sys_readlinkat_args callarg;
4419 4419
4420 SPARG(&callarg, fd) = fd; 4420 SPARG(&callarg, fd) = fd;
4421 SPARG(&callarg, path) = path; 4421 SPARG(&callarg, path) = path;
4422 SPARG(&callarg, buf) = buf; 4422 SPARG(&callarg, buf) = buf;
4423 SPARG(&callarg, bufsize) = bufsize; 4423 SPARG(&callarg, bufsize) = bufsize;
4424 4424
4425 error = rsys_syscall(SYS_readlinkat, &callarg, sizeof(callarg), retval); 4425 error = rsys_syscall(SYS_readlinkat, &callarg, sizeof(callarg), retval);
4426 rsys_seterrno(error); 4426 rsys_seterrno(error);
4427 if (error == 0) { 4427 if (error == 0) {
4428 if (sizeof(int) > sizeof(register_t)) 4428 if (sizeof(ssize_t) > sizeof(register_t))
4429 rv = *(int *)retval; 4429 rv = *(ssize_t *)retval;
4430 else 4430 else
4431 rv = *retval; 4431 rv = *retval;
4432 } 4432 }
4433 return rv; 4433 return rv;
4434} 4434}
4435rsys_alias(sys_readlinkat,rump_enosys) 4435rsys_alias(sys_readlinkat,rump_enosys)
4436 4436
4437int rump___sysimpl_symlinkat(const char *, int, const char *); 4437int rump___sysimpl_symlinkat(const char *, int, const char *);
4438int 4438int
4439rump___sysimpl_symlinkat(const char * path1, int fd, const char * path2) 4439rump___sysimpl_symlinkat(const char * path1, int fd, const char * path2)
4440{ 4440{
4441 register_t retval[2] = {0, 0}; 4441 register_t retval[2] = {0, 0};
4442 int error = 0; 4442 int error = 0;

cvs diff -r1.248 -r1.248.2.1 src/sys/sys/syscall.h (expand / switch to unified diff)

--- src/sys/sys/syscall.h 2012/02/11 23:18:14 1.248
+++ src/sys/sys/syscall.h 2015/04/14 15:03:38 1.248.2.1
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: syscall.h,v 1.248 2012/02/11 23:18:14 martin Exp $ */ 1/* $NetBSD: syscall.h,v 1.248.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call numbers. 4 * System call numbers.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#ifndef _SYS_SYSCALL_H_ 10#ifndef _SYS_SYSCALL_H_
11#define _SYS_SYSCALL_H_ 11#define _SYS_SYSCALL_H_
12 12
13#define SYS_MAXSYSARGS 8 13#define SYS_MAXSYSARGS 8
14 14
@@ -1318,27 +1318,27 @@ @@ -1318,27 +1318,27 @@
1318 1318
1319/* syscall: "fexecve" ret: "int" args: "int" "char *const *" "char *const *" */ 1319/* syscall: "fexecve" ret: "int" args: "int" "char *const *" "char *const *" */
1320#define SYS_fexecve 465 1320#define SYS_fexecve 465
1321 1321
1322/* syscall: "fstatat" ret: "int" args: "int" "const char *" "struct stat *" "int" */ 1322/* syscall: "fstatat" ret: "int" args: "int" "const char *" "struct stat *" "int" */
1323#define SYS_fstatat 466 1323#define SYS_fstatat 466
1324 1324
1325/* syscall: "utimensat" ret: "int" args: "int" "const char *" "const struct timespec *" "int" */ 1325/* syscall: "utimensat" ret: "int" args: "int" "const char *" "const struct timespec *" "int" */
1326#define SYS_utimensat 467 1326#define SYS_utimensat 467
1327 1327
1328/* syscall: "openat" ret: "int" args: "int" "const char *" "int" "..." */ 1328/* syscall: "openat" ret: "int" args: "int" "const char *" "int" "..." */
1329#define SYS_openat 468 1329#define SYS_openat 468
1330 1330
1331/* syscall: "readlinkat" ret: "int" args: "int" "const char *" "char *" "size_t" */ 1331/* syscall: "readlinkat" ret: "ssize_t" args: "int" "const char *" "char *" "size_t" */
1332#define SYS_readlinkat 469 1332#define SYS_readlinkat 469
1333 1333
1334/* syscall: "symlinkat" ret: "int" args: "const char *" "int" "const char *" */ 1334/* syscall: "symlinkat" ret: "int" args: "const char *" "int" "const char *" */
1335#define SYS_symlinkat 470 1335#define SYS_symlinkat 470
1336 1336
1337/* syscall: "unlinkat" ret: "int" args: "int" "const char *" "int" */ 1337/* syscall: "unlinkat" ret: "int" args: "int" "const char *" "int" */
1338#define SYS_unlinkat 471 1338#define SYS_unlinkat 471
1339 1339
1340/* syscall: "futimens" ret: "int" args: "int" "const struct timespec *" */ 1340/* syscall: "futimens" ret: "int" args: "int" "const struct timespec *" */
1341#define SYS_futimens 472 1341#define SYS_futimens 472
1342 1342
1343/* syscall: "__quotactl" ret: "int" args: "const char *" "struct quotactl_args *" */ 1343/* syscall: "__quotactl" ret: "int" args: "const char *" "struct quotactl_args *" */
1344#define SYS___quotactl 473 1344#define SYS___quotactl 473

cvs diff -r1.231 -r1.231.2.1 src/sys/sys/syscallargs.h (expand / switch to unified diff)

--- src/sys/sys/syscallargs.h 2012/02/11 23:18:14 1.231
+++ src/sys/sys/syscallargs.h 2015/04/14 15:03:38 1.231.2.1
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: syscallargs.h,v 1.231 2012/02/11 23:18:14 martin Exp $ */ 1/* $NetBSD: syscallargs.h,v 1.231.2.1 2015/04/14 15:03:38 msaitoh Exp $ */
2 2
3/* 3/*
4 * System call argument lists. 4 * System call argument lists.
5 * 5 *
6 * DO NOT EDIT-- this file is automatically generated. 6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp 7 * created from NetBSD: syscalls.master,v 1.254 2012/02/11 23:16:17 martin Exp
8 */ 8 */
9 9
10#ifndef _SYS_SYSCALLARGS_H_ 10#ifndef _SYS_SYSCALLARGS_H_
11#define _SYS_SYSCALLARGS_H_ 11#define _SYS_SYSCALLARGS_H_
12 12
13#include <sys/mount.h> 13#include <sys/mount.h>
14#include <sys/sched.h> 14#include <sys/sched.h>