Regen after r247667.
This commit is contained in:
parent
702516e70b
commit
369ed4d4ad
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#ifndef _FREEBSD32_SYSPROTO_H_
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#define FREEBSD32_SYS_syscall 0
|
||||
@ -435,4 +435,6 @@
|
||||
#define FREEBSD32_SYS_cap_ioctls_get 535
|
||||
#define FREEBSD32_SYS_cap_fcntls_limit 536
|
||||
#define FREEBSD32_SYS_cap_fcntls_get 537
|
||||
#define FREEBSD32_SYS_MAXSYSCALL 538
|
||||
#define FREEBSD32_SYS_bindat 538
|
||||
#define FREEBSD32_SYS_connectat 539
|
||||
#define FREEBSD32_SYS_MAXSYSCALL 540
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
const char *freebsd32_syscallnames[] = {
|
||||
@ -561,4 +561,6 @@ const char *freebsd32_syscallnames[] = {
|
||||
"cap_ioctls_get", /* 535 = cap_ioctls_get */
|
||||
"cap_fcntls_limit", /* 536 = cap_fcntls_limit */
|
||||
"cap_fcntls_get", /* 537 = cap_fcntls_get */
|
||||
"bindat", /* 538 = bindat */
|
||||
"connectat", /* 539 = connectat */
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -598,4 +598,6 @@ struct sysent freebsd32_sysent[] = {
|
||||
{ AS(cap_ioctls_get_args), (sy_call_t *)sys_cap_ioctls_get, AUE_CAP_IOCTLS_GET, NULL, 0, 0, 0, SY_THR_STATIC }, /* 535 = cap_ioctls_get */
|
||||
{ AS(cap_fcntls_limit_args), (sy_call_t *)sys_cap_fcntls_limit, AUE_CAP_FCNTLS_LIMIT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 536 = cap_fcntls_limit */
|
||||
{ AS(cap_fcntls_get_args), (sy_call_t *)sys_cap_fcntls_get, AUE_CAP_FCNTLS_GET, NULL, 0, 0, 0, SY_THR_STATIC }, /* 537 = cap_fcntls_get */
|
||||
{ AS(bindat_args), (sy_call_t *)sys_bindat, AUE_BINDAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 538 = bindat */
|
||||
{ AS(connectat_args), (sy_call_t *)sys_connectat, AUE_CONNECTAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 539 = connectat */
|
||||
};
|
||||
|
@ -3130,6 +3130,26 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* bindat */
|
||||
case 538: {
|
||||
struct bindat_args *p = params;
|
||||
iarg[0] = p->fd; /* int */
|
||||
iarg[1] = p->s; /* int */
|
||||
uarg[2] = (intptr_t) p->name; /* caddr_t */
|
||||
iarg[3] = p->namelen; /* int */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
/* connectat */
|
||||
case 539: {
|
||||
struct connectat_args *p = params;
|
||||
iarg[0] = p->fd; /* int */
|
||||
iarg[1] = p->s; /* int */
|
||||
uarg[2] = (intptr_t) p->name; /* caddr_t */
|
||||
iarg[3] = p->namelen; /* int */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
*n_args = 0;
|
||||
break;
|
||||
@ -8356,6 +8376,44 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* bindat */
|
||||
case 538:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "int";
|
||||
break;
|
||||
case 2:
|
||||
p = "caddr_t";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* connectat */
|
||||
case 539:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "int";
|
||||
break;
|
||||
case 2:
|
||||
p = "caddr_t";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
@ -10143,6 +10201,16 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* bindat */
|
||||
case 538:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* connectat */
|
||||
case 539:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -572,4 +572,6 @@ struct sysent sysent[] = {
|
||||
{ AS(cap_ioctls_get_args), (sy_call_t *)sys_cap_ioctls_get, AUE_CAP_IOCTLS_GET, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 535 = cap_ioctls_get */
|
||||
{ AS(cap_fcntls_limit_args), (sy_call_t *)sys_cap_fcntls_limit, AUE_CAP_FCNTLS_LIMIT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 536 = cap_fcntls_limit */
|
||||
{ AS(cap_fcntls_get_args), (sy_call_t *)sys_cap_fcntls_get, AUE_CAP_FCNTLS_GET, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 537 = cap_fcntls_get */
|
||||
{ AS(bindat_args), (sy_call_t *)sys_bindat, AUE_BINDAT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 538 = bindat */
|
||||
{ AS(connectat_args), (sy_call_t *)sys_connectat, AUE_CONNECTAT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC }, /* 539 = connectat */
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
const char *syscallnames[] = {
|
||||
@ -545,4 +545,6 @@ const char *syscallnames[] = {
|
||||
"cap_ioctls_get", /* 535 = cap_ioctls_get */
|
||||
"cap_fcntls_limit", /* 536 = cap_fcntls_limit */
|
||||
"cap_fcntls_get", /* 537 = cap_fcntls_get */
|
||||
"bindat", /* 538 = bindat */
|
||||
"connectat", /* 539 = connectat */
|
||||
};
|
||||
|
@ -3328,6 +3328,26 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* bindat */
|
||||
case 538: {
|
||||
struct bindat_args *p = params;
|
||||
iarg[0] = p->fd; /* int */
|
||||
iarg[1] = p->s; /* int */
|
||||
uarg[2] = (intptr_t) p->name; /* caddr_t */
|
||||
iarg[3] = p->namelen; /* int */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
/* connectat */
|
||||
case 539: {
|
||||
struct connectat_args *p = params;
|
||||
iarg[0] = p->fd; /* int */
|
||||
iarg[1] = p->s; /* int */
|
||||
uarg[2] = (intptr_t) p->name; /* caddr_t */
|
||||
iarg[3] = p->namelen; /* int */
|
||||
*n_args = 4;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
*n_args = 0;
|
||||
break;
|
||||
@ -8858,6 +8878,44 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* bindat */
|
||||
case 538:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "int";
|
||||
break;
|
||||
case 2:
|
||||
p = "caddr_t";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
/* connectat */
|
||||
case 539:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "int";
|
||||
break;
|
||||
case 1:
|
||||
p = "int";
|
||||
break;
|
||||
case 2:
|
||||
p = "caddr_t";
|
||||
break;
|
||||
case 3:
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
@ -10776,6 +10834,16 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* bindat */
|
||||
case 538:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
/* connectat */
|
||||
case 539:
|
||||
if (ndx == 0 || ndx == 1)
|
||||
p = "int";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
@ -457,4 +457,6 @@
|
||||
#define SYS_cap_ioctls_get 535
|
||||
#define SYS_cap_fcntls_limit 536
|
||||
#define SYS_cap_fcntls_get 537
|
||||
#define SYS_MAXSYSCALL 538
|
||||
#define SYS_bindat 538
|
||||
#define SYS_connectat 539
|
||||
#define SYS_MAXSYSCALL 540
|
||||
|
@ -1,7 +1,7 @@
|
||||
# FreeBSD system call names.
|
||||
# DO NOT EDIT-- this file is automatically generated.
|
||||
# $FreeBSD$
|
||||
# created from FreeBSD: head/sys/kern/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
# created from FreeBSD: head/sys/kern/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
MIASM = \
|
||||
syscall.o \
|
||||
exit.o \
|
||||
@ -405,4 +405,6 @@ MIASM = \
|
||||
cap_ioctls_limit.o \
|
||||
cap_ioctls_get.o \
|
||||
cap_fcntls_limit.o \
|
||||
cap_fcntls_get.o
|
||||
cap_fcntls_get.o \
|
||||
bindat.o \
|
||||
connectat.o
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247602 2013-03-02 00:53:12Z pjd
|
||||
* created from FreeBSD: head/sys/kern/syscalls.master 247667 2013-03-02 21:11:30Z pjd
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
@ -1784,6 +1784,18 @@ struct cap_fcntls_get_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char fcntlrightsp_l_[PADL_(uint32_t *)]; uint32_t * fcntlrightsp; char fcntlrightsp_r_[PADR_(uint32_t *)];
|
||||
};
|
||||
struct bindat_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
|
||||
char name_l_[PADL_(caddr_t)]; caddr_t name; char name_r_[PADR_(caddr_t)];
|
||||
char namelen_l_[PADL_(int)]; int namelen; char namelen_r_[PADR_(int)];
|
||||
};
|
||||
struct connectat_args {
|
||||
char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
|
||||
char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
|
||||
char name_l_[PADL_(caddr_t)]; caddr_t name; char name_r_[PADR_(caddr_t)];
|
||||
char namelen_l_[PADL_(int)]; int namelen; char namelen_r_[PADR_(int)];
|
||||
};
|
||||
int nosys(struct thread *, struct nosys_args *);
|
||||
void sys_sys_exit(struct thread *, struct sys_exit_args *);
|
||||
int sys_fork(struct thread *, struct fork_args *);
|
||||
@ -2171,6 +2183,8 @@ int sys_cap_ioctls_limit(struct thread *, struct cap_ioctls_limit_args *);
|
||||
int sys_cap_ioctls_get(struct thread *, struct cap_ioctls_get_args *);
|
||||
int sys_cap_fcntls_limit(struct thread *, struct cap_fcntls_limit_args *);
|
||||
int sys_cap_fcntls_get(struct thread *, struct cap_fcntls_get_args *);
|
||||
int sys_bindat(struct thread *, struct bindat_args *);
|
||||
int sys_connectat(struct thread *, struct connectat_args *);
|
||||
|
||||
#ifdef COMPAT_43
|
||||
|
||||
@ -2872,6 +2886,8 @@ int freebsd7_shmctl(struct thread *, struct freebsd7_shmctl_args *);
|
||||
#define SYS_AUE_cap_ioctls_get AUE_CAP_IOCTLS_GET
|
||||
#define SYS_AUE_cap_fcntls_limit AUE_CAP_FCNTLS_LIMIT
|
||||
#define SYS_AUE_cap_fcntls_get AUE_CAP_FCNTLS_GET
|
||||
#define SYS_AUE_bindat AUE_BINDAT
|
||||
#define SYS_AUE_connectat AUE_CONNECTAT
|
||||
|
||||
#undef PAD_
|
||||
#undef PADL_
|
||||
|
Loading…
x
Reference in New Issue
Block a user