Regen: mlock() and munlock() prototype changes.

This commit is contained in:
kleink 1998-05-30 22:23:30 +00:00
parent bb7e6a0bdd
commit 4c3bf73d01
4 changed files with 12 additions and 12 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: init_sysent.c,v 1.87 1998/05/07 17:24:30 kleink Exp $ */
/* $NetBSD: init_sysent.c,v 1.88 1998/05/30 22:23:30 kleink Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.74 1998/05/07 17:08:42 kleink Exp
* created from NetBSD: syscalls.master,v 1.75 1998/05/30 22:21:03 kleink Exp
*/
#include "fs_lfs.h"

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscalls.c,v 1.81 1998/05/07 17:24:30 kleink Exp $ */
/* $NetBSD: syscalls.c,v 1.82 1998/05/30 22:23:30 kleink Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.74 1998/05/07 17:08:42 kleink Exp
* created from NetBSD: syscalls.master,v 1.75 1998/05/30 22:21:03 kleink Exp
*/
#if defined(_KERNEL) && !defined(_LKM)

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.81 1998/05/07 17:24:31 kleink Exp $ */
/* $NetBSD: syscall.h,v 1.82 1998/05/30 22:23:30 kleink Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.74 1998/05/07 17:08:42 kleink Exp
* created from NetBSD: syscalls.master,v 1.75 1998/05/30 22:21:03 kleink Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -497,10 +497,10 @@
/* syscall: "__sysctl" ret: "int" args: "int *" "u_int" "void *" "size_t *" "void *" "size_t" */
#define SYS___sysctl 202
/* syscall: "mlock" ret: "int" args: "void *" "size_t" */
/* syscall: "mlock" ret: "int" args: "const void *" "size_t" */
#define SYS_mlock 203
/* syscall: "munlock" ret: "int" args: "void *" "size_t" */
/* syscall: "munlock" ret: "int" args: "const void *" "size_t" */
#define SYS_munlock 204
/* syscall: "undelete" ret: "int" args: "const char *" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.60 1998/05/07 17:24:31 kleink Exp $ */
/* $NetBSD: syscallargs.h,v 1.61 1998/05/30 22:23:30 kleink Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.74 1998/05/07 17:08:42 kleink Exp
* created from NetBSD: syscalls.master,v 1.75 1998/05/30 22:21:03 kleink Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -866,12 +866,12 @@ struct sys___sysctl_args {
};
struct sys_mlock_args {
syscallarg(void *) addr;
syscallarg(const void *) addr;
syscallarg(size_t) len;
};
struct sys_munlock_args {
syscallarg(void *) addr;
syscallarg(const void *) addr;
syscallarg(size_t) len;
};