Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys regen
details: https://anonhg.NetBSD.org/src/rev/391dd5d4ee6c
branches: trunk
changeset: 340675:391dd5d4ee6c
user: christos <christos%NetBSD.org@localhost>
date: Thu Sep 24 14:34:22 2015 +0000
description:
regen
diffstat:
sys/kern/init_sysent.c | 4 +-
sys/kern/syscalls.c | 555 ++++++++++++++++++++++++++++++++++++++++++-
sys/kern/syscalls_autoload.c | 4 +-
sys/kern/systrace_args.c | 2 +-
sys/sys/syscall.h | 2 +-
sys/sys/syscallargs.h | 2 +-
sys/sys/syscallvar.h | 3 +-
7 files changed, 562 insertions(+), 10 deletions(-)
diffs (truncated from 659 to 300 lines):
diff -r a585c82117b2 -r 391dd5d4ee6c sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Thu Sep 24 14:33:31 2015 +0000
+++ b/sys/kern/init_sysent.c Thu Sep 24 14:34:22 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: init_sysent.c,v 1.299 2015/08/24 16:07:10 pooka Exp $ */
+/* $NetBSD: init_sysent.c,v 1.300 2015/09/24 14:34:48 christos Exp $ */
/*
* System call switch table.
@@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.299 2015/08/24 16:07:10 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.300 2015/09/24 14:34:48 christos Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"
diff -r a585c82117b2 -r 391dd5d4ee6c sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Thu Sep 24 14:33:31 2015 +0000
+++ b/sys/kern/syscalls.c Thu Sep 24 14:34:22 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: syscalls.c,v 1.288 2015/08/24 16:07:10 pooka Exp $ */
+/* $NetBSD: syscalls.c,v 1.289 2015/09/24 14:34:22 christos Exp $ */
/*
* System call names.
@@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.288 2015/08/24 16:07:10 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.289 2015/09/24 14:34:22 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"
@@ -21,6 +21,8 @@
#include <sys/mount.h>
#include <sys/sched.h>
#include <sys/syscallargs.h>
+#else /* _KERNEL_OPT */
+#include <sys/null.h>
#endif /* _KERNEL_OPT */
const char *const syscallnames[] = {
@@ -569,3 +571,552 @@
/* 510 */ "# filler",
/* 511 */ "# filler",
};
+
+
+/* libc style syscall names */
+const char *const altsyscallnames[] = {
+ /* 0 */ NULL, /* syscall */
+ /* 1 */ NULL, /* exit */
+ /* 2 */ NULL, /* fork */
+ /* 3 */ NULL, /* read */
+ /* 4 */ NULL, /* write */
+ /* 5 */ NULL, /* open */
+ /* 6 */ NULL, /* close */
+ /* 7 */ NULL, /* compat_50_wait4 */
+ /* 8 */ NULL, /* compat_43_ocreat */
+ /* 9 */ NULL, /* link */
+ /* 10 */ NULL, /* unlink */
+ /* 11 */ NULL, /* obsolete execv */
+ /* 12 */ NULL, /* chdir */
+ /* 13 */ NULL, /* fchdir */
+ /* 14 */ NULL, /* compat_50_mknod */
+ /* 15 */ NULL, /* chmod */
+ /* 16 */ NULL, /* chown */
+ /* 17 */ "obreak",
+ /* 18 */ NULL, /* compat_20_getfsstat */
+ /* 19 */ NULL, /* compat_43_olseek */
+ /* 20 */ "getpid_with_ppid",
+ /* 21 */ NULL, /* compat_40_mount */
+ /* 22 */ NULL, /* unmount */
+ /* 23 */ NULL, /* setuid */
+ /* 24 */ "getuid_with_euid",
+ /* 25 */ NULL, /* geteuid */
+ /* 26 */ NULL, /* ptrace */
+ /* 27 */ NULL, /* recvmsg */
+ /* 28 */ NULL, /* sendmsg */
+ /* 29 */ NULL, /* recvfrom */
+ /* 30 */ NULL, /* accept */
+ /* 31 */ NULL, /* getpeername */
+ /* 32 */ NULL, /* getsockname */
+ /* 33 */ NULL, /* access */
+ /* 34 */ NULL, /* chflags */
+ /* 35 */ NULL, /* fchflags */
+ /* 36 */ NULL, /* sync */
+ /* 37 */ NULL, /* kill */
+ /* 38 */ NULL, /* compat_43_stat43 */
+ /* 39 */ NULL, /* getppid */
+ /* 40 */ NULL, /* compat_43_lstat43 */
+ /* 41 */ NULL, /* dup */
+ /* 42 */ NULL, /* pipe */
+ /* 43 */ NULL, /* getegid */
+ /* 44 */ NULL, /* profil */
+ /* 45 */ NULL, /* ktrace */
+ /* 46 */ NULL, /* compat_13_sigaction13 */
+ /* 47 */ "getgid_with_egid",
+ /* 48 */ NULL, /* compat_13_sigprocmask13 */
+ /* 49 */ NULL, /* __getlogin */
+ /* 50 */ NULL, /* __setlogin */
+ /* 51 */ NULL, /* acct */
+ /* 52 */ NULL, /* compat_13_sigpending13 */
+ /* 53 */ NULL, /* compat_13_sigaltstack13 */
+ /* 54 */ NULL, /* ioctl */
+ /* 55 */ NULL, /* compat_12_oreboot */
+ /* 56 */ NULL, /* revoke */
+ /* 57 */ NULL, /* symlink */
+ /* 58 */ NULL, /* readlink */
+ /* 59 */ NULL, /* execve */
+ /* 60 */ NULL, /* umask */
+ /* 61 */ NULL, /* chroot */
+ /* 62 */ NULL, /* compat_43_fstat43 */
+ /* 63 */ NULL, /* compat_43_ogetkerninfo */
+ /* 64 */ NULL, /* compat_43_ogetpagesize */
+ /* 65 */ NULL, /* compat_12_msync */
+ /* 66 */ NULL, /* vfork */
+ /* 67 */ NULL, /* obsolete vread */
+ /* 68 */ NULL, /* obsolete vwrite */
+ /* 69 */ NULL, /* sbrk */
+ /* 70 */ NULL, /* sstk */
+ /* 71 */ NULL, /* compat_43_ommap */
+ /* 72 */ "ovadvise",
+ /* 73 */ NULL, /* munmap */
+ /* 74 */ NULL, /* mprotect */
+ /* 75 */ NULL, /* madvise */
+ /* 76 */ NULL, /* obsolete vhangup */
+ /* 77 */ NULL, /* obsolete vlimit */
+ /* 78 */ NULL, /* mincore */
+ /* 79 */ NULL, /* getgroups */
+ /* 80 */ NULL, /* setgroups */
+ /* 81 */ NULL, /* getpgrp */
+ /* 82 */ NULL, /* setpgid */
+ /* 83 */ NULL, /* compat_50_setitimer */
+ /* 84 */ NULL, /* compat_43_owait */
+ /* 85 */ NULL, /* compat_12_oswapon */
+ /* 86 */ NULL, /* compat_50_getitimer */
+ /* 87 */ NULL, /* compat_43_ogethostname */
+ /* 88 */ NULL, /* compat_43_osethostname */
+ /* 89 */ NULL, /* compat_43_ogetdtablesize */
+ /* 90 */ NULL, /* dup2 */
+ /* 91 */ NULL, /* unimplemented getdopt */
+ /* 92 */ NULL, /* fcntl */
+ /* 93 */ NULL, /* compat_50_select */
+ /* 94 */ NULL, /* unimplemented setdopt */
+ /* 95 */ NULL, /* fsync */
+ /* 96 */ NULL, /* setpriority */
+ /* 97 */ NULL, /* compat_30_socket */
+ /* 98 */ NULL, /* connect */
+ /* 99 */ NULL, /* compat_43_oaccept */
+ /* 100 */ NULL, /* getpriority */
+ /* 101 */ NULL, /* compat_43_osend */
+ /* 102 */ NULL, /* compat_43_orecv */
+ /* 103 */ NULL, /* compat_13_sigreturn13 */
+ /* 104 */ NULL, /* bind */
+ /* 105 */ NULL, /* setsockopt */
+ /* 106 */ NULL, /* listen */
+ /* 107 */ NULL, /* obsolete vtimes */
+ /* 108 */ NULL, /* compat_43_osigvec */
+ /* 109 */ NULL, /* compat_43_osigblock */
+ /* 110 */ NULL, /* compat_43_osigsetmask */
+ /* 111 */ NULL, /* compat_13_sigsuspend13 */
+ /* 112 */ NULL, /* compat_43_osigstack */
+ /* 113 */ NULL, /* compat_43_orecvmsg */
+ /* 114 */ NULL, /* compat_43_osendmsg */
+ /* 115 */ NULL, /* obsolete vtrace */
+ /* 116 */ NULL, /* compat_50_gettimeofday */
+ /* 117 */ NULL, /* compat_50_getrusage */
+ /* 118 */ NULL, /* getsockopt */
+ /* 119 */ NULL, /* obsolete resuba */
+ /* 120 */ NULL, /* readv */
+ /* 121 */ NULL, /* writev */
+ /* 122 */ NULL, /* compat_50_settimeofday */
+ /* 123 */ NULL, /* fchown */
+ /* 124 */ NULL, /* fchmod */
+ /* 125 */ NULL, /* compat_43_orecvfrom */
+ /* 126 */ NULL, /* setreuid */
+ /* 127 */ NULL, /* setregid */
+ /* 128 */ NULL, /* rename */
+ /* 129 */ NULL, /* compat_43_otruncate */
+ /* 130 */ NULL, /* compat_43_oftruncate */
+ /* 131 */ NULL, /* flock */
+ /* 132 */ NULL, /* mkfifo */
+ /* 133 */ NULL, /* sendto */
+ /* 134 */ NULL, /* shutdown */
+ /* 135 */ NULL, /* socketpair */
+ /* 136 */ NULL, /* mkdir */
+ /* 137 */ NULL, /* rmdir */
+ /* 138 */ NULL, /* compat_50_utimes */
+ /* 139 */ NULL, /* obsolete 4.2 sigreturn */
+ /* 140 */ NULL, /* compat_50_adjtime */
+ /* 141 */ NULL, /* compat_43_ogetpeername */
+ /* 142 */ NULL, /* compat_43_ogethostid */
+ /* 143 */ NULL, /* compat_43_osethostid */
+ /* 144 */ NULL, /* compat_43_ogetrlimit */
+ /* 145 */ NULL, /* compat_43_osetrlimit */
+ /* 146 */ NULL, /* compat_43_okillpg */
+ /* 147 */ NULL, /* setsid */
+ /* 148 */ NULL, /* compat_50_quotactl */
+ /* 149 */ NULL, /* compat_43_oquota */
+ /* 150 */ NULL, /* compat_43_ogetsockname */
+ /* 151 */ NULL, /* unimplemented */
+ /* 152 */ NULL, /* unimplemented */
+ /* 153 */ NULL, /* unimplemented */
+ /* 154 */ NULL, /* unimplemented */
+ /* 155 */ NULL, /* nfssvc */
+ /* 156 */ NULL, /* compat_43_ogetdirentries */
+ /* 157 */ NULL, /* compat_20_statfs */
+ /* 158 */ NULL, /* compat_20_fstatfs */
+ /* 159 */ NULL, /* unimplemented */
+ /* 160 */ NULL, /* unimplemented */
+ /* 161 */ NULL, /* compat_30_getfh */
+ /* 162 */ NULL, /* compat_09_ogetdomainname */
+ /* 163 */ NULL, /* compat_09_osetdomainname */
+ /* 164 */ NULL, /* compat_09_ouname */
+ /* 165 */ NULL, /* sysarch */
+ /* 166 */ NULL, /* unimplemented */
+ /* 167 */ NULL, /* unimplemented */
+ /* 168 */ NULL, /* unimplemented */
+#if !defined(_LP64)
+ /* 169 */ NULL, /* compat_10_osemsys */
+#else
+ /* 169 */ NULL, /* excluded 1.0 semsys */
+#endif
+#if !defined(_LP64)
+ /* 170 */ NULL, /* compat_10_omsgsys */
+#else
+ /* 170 */ NULL, /* excluded 1.0 msgsys */
+#endif
+#if !defined(_LP64)
+ /* 171 */ NULL, /* compat_10_oshmsys */
+#else
+ /* 171 */ NULL, /* excluded 1.0 shmsys */
+#endif
+ /* 172 */ NULL, /* unimplemented */
+ /* 173 */ NULL, /* pread */
+ /* 174 */ NULL, /* pwrite */
+ /* 175 */ NULL, /* compat_30_ntp_gettime */
+#if defined(NTP) || !defined(_KERNEL_OPT)
+ /* 176 */ NULL, /* ntp_adjtime */
+#else
+ /* 176 */ NULL, /* excluded ntp_adjtime */
+#endif
+ /* 177 */ NULL, /* unimplemented */
+ /* 178 */ NULL, /* unimplemented */
+ /* 179 */ NULL, /* unimplemented */
+ /* 180 */ NULL, /* unimplemented */
+ /* 181 */ NULL, /* setgid */
+ /* 182 */ NULL, /* setegid */
+ /* 183 */ NULL, /* seteuid */
+ /* 184 */ NULL, /* lfs_bmapv */
+ /* 185 */ NULL, /* lfs_markv */
+ /* 186 */ NULL, /* lfs_segclean */
+ /* 187 */ NULL, /* compat_50_lfs_segwait */
+ /* 188 */ NULL, /* compat_12_stat12 */
+ /* 189 */ NULL, /* compat_12_fstat12 */
+ /* 190 */ NULL, /* compat_12_lstat12 */
+ /* 191 */ NULL, /* pathconf */
+ /* 192 */ NULL, /* fpathconf */
+ /* 193 */ NULL, /* unimplemented */
+ /* 194 */ NULL, /* getrlimit */
+ /* 195 */ NULL, /* setrlimit */
+ /* 196 */ NULL, /* compat_12_getdirentries */
+ /* 197 */ NULL, /* mmap */
+ /* 198 */ NULL, /* __syscall */
+ /* 199 */ NULL, /* lseek */
+ /* 200 */ NULL, /* truncate */
+ /* 201 */ NULL, /* ftruncate */
+ /* 202 */ NULL, /* __sysctl */
+ /* 203 */ NULL, /* mlock */
+ /* 204 */ NULL, /* munlock */
+ /* 205 */ NULL, /* undelete */
+ /* 206 */ NULL, /* compat_50_futimes */
+ /* 207 */ NULL, /* getpgid */
+ /* 208 */ NULL, /* reboot */
+ /* 209 */ NULL, /* poll */
+ /* 210 */ NULL, /* afssys */
+ /* 211 */ NULL, /* unimplemented */
+ /* 212 */ NULL, /* unimplemented */
+ /* 213 */ NULL, /* unimplemented */
+ /* 214 */ NULL, /* unimplemented */
+ /* 215 */ NULL, /* unimplemented */
+ /* 216 */ NULL, /* unimplemented */
+ /* 217 */ NULL, /* unimplemented */
+ /* 218 */ NULL, /* unimplemented */
+ /* 219 */ NULL, /* unimplemented */
+ /* 220 */ NULL, /* compat_14___semctl */
+ /* 221 */ NULL, /* semget */
+ /* 222 */ NULL, /* semop */
+ /* 223 */ NULL, /* semconfig */
+ /* 224 */ NULL, /* compat_14_msgctl */
+ /* 225 */ NULL, /* msgget */
+ /* 226 */ NULL, /* msgsnd */
+ /* 227 */ NULL, /* msgrcv */
+ /* 228 */ NULL, /* shmat */
+ /* 229 */ NULL, /* compat_14_shmctl */
+ /* 230 */ NULL, /* shmdt */
Home |
Main Index |
Thread Index |
Old Index