Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/linux/arch/mips Regen.
details: https://anonhg.NetBSD.org/src/rev/e9aca3afcfdf
branches: trunk
changeset: 762378:e9aca3afcfdf
user: matt <matt%NetBSD.org@localhost>
date: Sun Feb 20 08:13:29 2011 +0000
description:
Regen.
diffstat:
sys/compat/linux/arch/mips/linux_syscall.h | 10 +-
sys/compat/linux/arch/mips/linux_syscallargs.h | 28 +-
sys/compat/linux/arch/mips/linux_syscalls.c | 182 ++++++++++++++++++++++++-
sys/compat/linux/arch/mips/linux_sysent.c | 6 +-
4 files changed, 201 insertions(+), 25 deletions(-)
diffs (truncated from 334 to 300 lines):
diff -r 9a3887776043 -r e9aca3afcfdf sys/compat/linux/arch/mips/linux_syscall.h
--- a/sys/compat/linux/arch/mips/linux_syscall.h Sun Feb 20 08:09:46 2011 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscall.h Sun Feb 20 08:13:29 2011 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.43 2010/07/07 01:31:53 chs Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.44 2011/02/20 08:13:29 matt Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.38 2010/07/07 01:30:34 chs Exp
+ * created from NetBSD: syscalls.master,v 1.39 2011/02/20 08:09:46 matt Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -80,7 +80,7 @@
/* syscall: "stime" ret: "int" args: "linux_time_t *" */
#define LINUX_SYS_stime 25
-/* syscall: "ptrace" ret: "int" args: "int" "int" "int" "int" */
+/* syscall: "ptrace" ret: "int" args: "long" "long" "long" "long" */
#define LINUX_SYS_ptrace 26
/* syscall: "alarm" ret: "int" args: "unsigned int" */
@@ -301,7 +301,7 @@
/* syscall: "sysinfo" ret: "int" args: "struct linux_sysinfo *" */
#define LINUX_SYS_sysinfo 116
-/* syscall: "ipc" ret: "int" args: "int" "int" "int" "int" "void *" */
+/* syscall: "ipc" ret: "int" args: "int" "long" "long" "long" "void *" */
#define LINUX_SYS_ipc 117
/* syscall: "fsync" ret: "int" args: "int" */
@@ -364,7 +364,7 @@
/* syscall: "cacheflush" ret: "int" args: "void *" "int" "int" */
#define LINUX_SYS_cacheflush 147
-/* syscall: "sysmips" ret: "int" args: "int" "int" "int" "int" */
+/* syscall: "sysmips" ret: "int" args: "long" "long" "long" "long" */
#define LINUX_SYS_sysmips 149
/* syscall: "getsid" ret: "pid_t" args: "pid_t" */
diff -r 9a3887776043 -r e9aca3afcfdf sys/compat/linux/arch/mips/linux_syscallargs.h
--- a/sys/compat/linux/arch/mips/linux_syscallargs.h Sun Feb 20 08:09:46 2011 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscallargs.h Sun Feb 20 08:13:29 2011 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.42 2010/07/07 01:31:53 chs Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.43 2011/02/20 08:13:29 matt Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.38 2010/07/07 01:30:34 chs Exp
+ * created from NetBSD: syscalls.master,v 1.39 2011/02/20 08:09:46 matt Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -27,7 +27,7 @@
}
#undef check_syscall_args
-#define check_syscall_args(call) \
+#define check_syscall_args(call) /*LINTED*/ \
typedef char call##_check_args[sizeof (struct call##_args) \
<= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
@@ -99,10 +99,10 @@
check_syscall_args(linux_sys_stime)
struct linux_sys_ptrace_args {
- syscallarg(int) request;
- syscallarg(int) pid;
- syscallarg(int) addr;
- syscallarg(int) data;
+ syscallarg(long) request;
+ syscallarg(long) pid;
+ syscallarg(long) addr;
+ syscallarg(long) data;
};
check_syscall_args(linux_sys_ptrace)
@@ -368,9 +368,9 @@
struct linux_sys_ipc_args {
syscallarg(int) what;
- syscallarg(int) a1;
- syscallarg(int) a2;
- syscallarg(int) a3;
+ syscallarg(long) a1;
+ syscallarg(long) a2;
+ syscallarg(long) a3;
syscallarg(void *) ptr;
};
check_syscall_args(linux_sys_ipc)
@@ -476,10 +476,10 @@
check_syscall_args(linux_sys_cacheflush)
struct linux_sys_sysmips_args {
- syscallarg(int) cmd;
- syscallarg(int) arg1;
- syscallarg(int) arg2;
- syscallarg(int) arg3;
+ syscallarg(long) cmd;
+ syscallarg(long) arg1;
+ syscallarg(long) arg2;
+ syscallarg(long) arg3;
};
check_syscall_args(linux_sys_sysmips)
diff -r 9a3887776043 -r e9aca3afcfdf sys/compat/linux/arch/mips/linux_syscalls.c
--- a/sys/compat/linux/arch/mips/linux_syscalls.c Sun Feb 20 08:09:46 2011 +0000
+++ b/sys/compat/linux/arch/mips/linux_syscalls.c Sun Feb 20 08:13:29 2011 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.42 2010/07/07 01:31:53 chs Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.43 2011/02/20 08:13:29 matt Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.38 2010/07/07 01:30:34 chs Exp
+ * created from NetBSD: syscalls.master,v 1.39 2011/02/20 08:09:46 matt Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.42 2010/07/07 01:31:53 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.43 2011/02/20 08:13:29 matt Exp $");
#if defined(_KERNEL_OPT)
#include <sys/param.h>
@@ -364,4 +364,180 @@
/* 333 */ "#333 (unimplemented perf_event_open)",
/* 334 */ "#334 (unimplemented accept4)",
/* 335 */ "#335 (unimplemented recvmmsg)",
+ /* 336 */ "# filler",
+ /* 337 */ "# filler",
+ /* 338 */ "# filler",
+ /* 339 */ "# filler",
+ /* 340 */ "# filler",
+ /* 341 */ "# filler",
+ /* 342 */ "# filler",
+ /* 343 */ "# filler",
+ /* 344 */ "# filler",
+ /* 345 */ "# filler",
+ /* 346 */ "# filler",
+ /* 347 */ "# filler",
+ /* 348 */ "# filler",
+ /* 349 */ "# filler",
+ /* 350 */ "# filler",
+ /* 351 */ "# filler",
+ /* 352 */ "# filler",
+ /* 353 */ "# filler",
+ /* 354 */ "# filler",
+ /* 355 */ "# filler",
+ /* 356 */ "# filler",
+ /* 357 */ "# filler",
+ /* 358 */ "# filler",
+ /* 359 */ "# filler",
+ /* 360 */ "# filler",
+ /* 361 */ "# filler",
+ /* 362 */ "# filler",
+ /* 363 */ "# filler",
+ /* 364 */ "# filler",
+ /* 365 */ "# filler",
+ /* 366 */ "# filler",
+ /* 367 */ "# filler",
+ /* 368 */ "# filler",
+ /* 369 */ "# filler",
+ /* 370 */ "# filler",
+ /* 371 */ "# filler",
+ /* 372 */ "# filler",
+ /* 373 */ "# filler",
+ /* 374 */ "# filler",
+ /* 375 */ "# filler",
+ /* 376 */ "# filler",
+ /* 377 */ "# filler",
+ /* 378 */ "# filler",
+ /* 379 */ "# filler",
+ /* 380 */ "# filler",
+ /* 381 */ "# filler",
+ /* 382 */ "# filler",
+ /* 383 */ "# filler",
+ /* 384 */ "# filler",
+ /* 385 */ "# filler",
+ /* 386 */ "# filler",
+ /* 387 */ "# filler",
+ /* 388 */ "# filler",
+ /* 389 */ "# filler",
+ /* 390 */ "# filler",
+ /* 391 */ "# filler",
+ /* 392 */ "# filler",
+ /* 393 */ "# filler",
+ /* 394 */ "# filler",
+ /* 395 */ "# filler",
+ /* 396 */ "# filler",
+ /* 397 */ "# filler",
+ /* 398 */ "# filler",
+ /* 399 */ "# filler",
+ /* 400 */ "# filler",
+ /* 401 */ "# filler",
+ /* 402 */ "# filler",
+ /* 403 */ "# filler",
+ /* 404 */ "# filler",
+ /* 405 */ "# filler",
+ /* 406 */ "# filler",
+ /* 407 */ "# filler",
+ /* 408 */ "# filler",
+ /* 409 */ "# filler",
+ /* 410 */ "# filler",
+ /* 411 */ "# filler",
+ /* 412 */ "# filler",
+ /* 413 */ "# filler",
+ /* 414 */ "# filler",
+ /* 415 */ "# filler",
+ /* 416 */ "# filler",
+ /* 417 */ "# filler",
+ /* 418 */ "# filler",
+ /* 419 */ "# filler",
+ /* 420 */ "# filler",
+ /* 421 */ "# filler",
+ /* 422 */ "# filler",
+ /* 423 */ "# filler",
+ /* 424 */ "# filler",
+ /* 425 */ "# filler",
+ /* 426 */ "# filler",
+ /* 427 */ "# filler",
+ /* 428 */ "# filler",
+ /* 429 */ "# filler",
+ /* 430 */ "# filler",
+ /* 431 */ "# filler",
+ /* 432 */ "# filler",
+ /* 433 */ "# filler",
+ /* 434 */ "# filler",
+ /* 435 */ "# filler",
+ /* 436 */ "# filler",
+ /* 437 */ "# filler",
+ /* 438 */ "# filler",
+ /* 439 */ "# filler",
+ /* 440 */ "# filler",
+ /* 441 */ "# filler",
+ /* 442 */ "# filler",
+ /* 443 */ "# filler",
+ /* 444 */ "# filler",
+ /* 445 */ "# filler",
+ /* 446 */ "# filler",
+ /* 447 */ "# filler",
+ /* 448 */ "# filler",
+ /* 449 */ "# filler",
+ /* 450 */ "# filler",
+ /* 451 */ "# filler",
+ /* 452 */ "# filler",
+ /* 453 */ "# filler",
+ /* 454 */ "# filler",
+ /* 455 */ "# filler",
+ /* 456 */ "# filler",
+ /* 457 */ "# filler",
+ /* 458 */ "# filler",
+ /* 459 */ "# filler",
+ /* 460 */ "# filler",
+ /* 461 */ "# filler",
+ /* 462 */ "# filler",
+ /* 463 */ "# filler",
+ /* 464 */ "# filler",
+ /* 465 */ "# filler",
+ /* 466 */ "# filler",
+ /* 467 */ "# filler",
+ /* 468 */ "# filler",
+ /* 469 */ "# filler",
+ /* 470 */ "# filler",
+ /* 471 */ "# filler",
+ /* 472 */ "# filler",
+ /* 473 */ "# filler",
+ /* 474 */ "# filler",
+ /* 475 */ "# filler",
+ /* 476 */ "# filler",
+ /* 477 */ "# filler",
+ /* 478 */ "# filler",
+ /* 479 */ "# filler",
+ /* 480 */ "# filler",
+ /* 481 */ "# filler",
+ /* 482 */ "# filler",
+ /* 483 */ "# filler",
+ /* 484 */ "# filler",
+ /* 485 */ "# filler",
+ /* 486 */ "# filler",
+ /* 487 */ "# filler",
+ /* 488 */ "# filler",
+ /* 489 */ "# filler",
+ /* 490 */ "# filler",
+ /* 491 */ "# filler",
+ /* 492 */ "# filler",
+ /* 493 */ "# filler",
+ /* 494 */ "# filler",
+ /* 495 */ "# filler",
+ /* 496 */ "# filler",
+ /* 497 */ "# filler",
+ /* 498 */ "# filler",
+ /* 499 */ "# filler",
Home |
Main Index |
Thread Index |
Old Index