Updated generated files.

This commit is contained in:
Bruce Evans 1998-02-03 17:52:21 +00:00
parent 14f1d4260d
commit a92ae47539
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33041
5 changed files with 8 additions and 6 deletions

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp
* created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp
*/
#include "opt_compat.h"

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp
* created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp
*/
char *syscallnames[] = {

View File

@ -2,7 +2,7 @@
* System call hiders.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp
* created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp
*/
HIDE_POSIX(fork)

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp
* created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp
*/
#define SYS_syscall 0

View File

@ -2,7 +2,7 @@
* System call prototypes.
*
* DO NOT EDIT-- this file is automatically generated.
* created from Id: syscalls.master,v 1.46 1998/01/24 02:54:35 eivind Exp
* created from Id: syscalls.master,v 1.48 1998/02/03 17:45:43 bde Exp
*/
#ifndef _SYS_SYSPROTO_H_
@ -10,6 +10,8 @@
#include <sys/signal.h>
struct proc;
struct nosys_args {
int dummy;
};
@ -277,7 +279,7 @@ struct madvise_args {
int behav;
};
struct mincore_args {
caddr_t addr;
const void * addr;
size_t len;
char * vec;
};