summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/ia32/ia32_proto.h33
-rw-r--r--sys/amd64/ia32/ia32_syscall.h2
-rw-r--r--sys/amd64/ia32/ia32_sysent.c2
-rw-r--r--sys/compat/freebsd32/freebsd32_proto.h33
-rw-r--r--sys/compat/freebsd32/freebsd32_syscall.h2
-rw-r--r--sys/compat/freebsd32/freebsd32_sysent.c2
-rw-r--r--sys/ia64/ia32/ia32_proto.h33
-rw-r--r--sys/ia64/ia32/ia32_syscall.h2
-rw-r--r--sys/ia64/ia32/ia32_sysent.c2
9 files changed, 9 insertions, 102 deletions
diff --git a/sys/amd64/ia32/ia32_proto.h b/sys/amd64/ia32/ia32_proto.h
index ac82621..3dde3a2 100644
--- a/sys/amd64/ia32/ia32_proto.h
+++ b/sys/amd64/ia32/ia32_proto.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#ifndef _IA32_SYSPROTO_H_
@@ -216,30 +216,6 @@ struct ia32_sendfile_args {
char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)];
char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
};
-struct thr_create_args {
- char ctx_l_[PADL_(ucontext_t *)]; ucontext_t * ctx; char ctx_r_[PADR_(ucontext_t *)];
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
- char s_l_[PADL_(int flag)]; int flag s; char s_r_[PADR_(int flag)];
-};
-struct thr_exit_args {
- register_t dummy;
-};
-struct thr_self_args {
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
-};
-struct thr_kill_args {
- char id_l_[PADL_(thr_id_t)]; thr_id_t id; char id_r_[PADR_(thr_id_t)];
- char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
-};
-struct _umtx_lock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct _umtx_unlock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct jail_attach_args {
- char jid_l_[PADL_(int)]; int jid; char jid_r_[PADR_(int)];
-};
int ia32_open(struct thread *, struct ia32_open_args *);
int ia32_wait4(struct thread *, struct ia32_wait4_args *);
int ia32_getfsstat(struct thread *, struct ia32_getfsstat_args *);
@@ -273,13 +249,6 @@ int ia32_ftruncate(struct thread *, struct ia32_ftruncate_args *);
int ia32_sysctl(struct thread *, struct ia32_sysctl_args *);
int ia32_sigaction(struct thread *, struct ia32_sigaction_args *);
int ia32_sendfile(struct thread *, struct ia32_sendfile_args *);
-int thr_create(struct thread *, struct thr_create_args *);
-int thr_exit(struct thread *, struct thr_exit_args *);
-int thr_self(struct thread *, struct thr_self_args *);
-int thr_kill(struct thread *, struct thr_kill_args *);
-int _umtx_lock(struct thread *, struct _umtx_lock_args *);
-int _umtx_unlock(struct thread *, struct _umtx_unlock_args *);
-int jail_attach(struct thread *, struct jail_attach_args *);
#ifdef COMPAT_43
diff --git a/sys/amd64/ia32/ia32_syscall.h b/sys/amd64/ia32/ia32_syscall.h
index c346845..8047bd1 100644
--- a/sys/amd64/ia32/ia32_syscall.h
+++ b/sys/amd64/ia32/ia32_syscall.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#define IA32_SYS_syscall 0
diff --git a/sys/amd64/ia32/ia32_sysent.c b/sys/amd64/ia32/ia32_sysent.c
index c48915b..c3d5e6f 100644
--- a/sys/amd64/ia32/ia32_sysent.c
+++ b/sys/amd64/ia32/ia32_sysent.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#include "opt_compat.h"
diff --git a/sys/compat/freebsd32/freebsd32_proto.h b/sys/compat/freebsd32/freebsd32_proto.h
index ac82621..3dde3a2 100644
--- a/sys/compat/freebsd32/freebsd32_proto.h
+++ b/sys/compat/freebsd32/freebsd32_proto.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#ifndef _IA32_SYSPROTO_H_
@@ -216,30 +216,6 @@ struct ia32_sendfile_args {
char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)];
char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
};
-struct thr_create_args {
- char ctx_l_[PADL_(ucontext_t *)]; ucontext_t * ctx; char ctx_r_[PADR_(ucontext_t *)];
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
- char s_l_[PADL_(int flag)]; int flag s; char s_r_[PADR_(int flag)];
-};
-struct thr_exit_args {
- register_t dummy;
-};
-struct thr_self_args {
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
-};
-struct thr_kill_args {
- char id_l_[PADL_(thr_id_t)]; thr_id_t id; char id_r_[PADR_(thr_id_t)];
- char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
-};
-struct _umtx_lock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct _umtx_unlock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct jail_attach_args {
- char jid_l_[PADL_(int)]; int jid; char jid_r_[PADR_(int)];
-};
int ia32_open(struct thread *, struct ia32_open_args *);
int ia32_wait4(struct thread *, struct ia32_wait4_args *);
int ia32_getfsstat(struct thread *, struct ia32_getfsstat_args *);
@@ -273,13 +249,6 @@ int ia32_ftruncate(struct thread *, struct ia32_ftruncate_args *);
int ia32_sysctl(struct thread *, struct ia32_sysctl_args *);
int ia32_sigaction(struct thread *, struct ia32_sigaction_args *);
int ia32_sendfile(struct thread *, struct ia32_sendfile_args *);
-int thr_create(struct thread *, struct thr_create_args *);
-int thr_exit(struct thread *, struct thr_exit_args *);
-int thr_self(struct thread *, struct thr_self_args *);
-int thr_kill(struct thread *, struct thr_kill_args *);
-int _umtx_lock(struct thread *, struct _umtx_lock_args *);
-int _umtx_unlock(struct thread *, struct _umtx_unlock_args *);
-int jail_attach(struct thread *, struct jail_attach_args *);
#ifdef COMPAT_43
diff --git a/sys/compat/freebsd32/freebsd32_syscall.h b/sys/compat/freebsd32/freebsd32_syscall.h
index c346845..8047bd1 100644
--- a/sys/compat/freebsd32/freebsd32_syscall.h
+++ b/sys/compat/freebsd32/freebsd32_syscall.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#define IA32_SYS_syscall 0
diff --git a/sys/compat/freebsd32/freebsd32_sysent.c b/sys/compat/freebsd32/freebsd32_sysent.c
index c48915b..c3d5e6f 100644
--- a/sys/compat/freebsd32/freebsd32_sysent.c
+++ b/sys/compat/freebsd32/freebsd32_sysent.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#include "opt_compat.h"
diff --git a/sys/ia64/ia32/ia32_proto.h b/sys/ia64/ia32/ia32_proto.h
index ac82621..3dde3a2 100644
--- a/sys/ia64/ia32/ia32_proto.h
+++ b/sys/ia64/ia32/ia32_proto.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#ifndef _IA32_SYSPROTO_H_
@@ -216,30 +216,6 @@ struct ia32_sendfile_args {
char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)];
char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
};
-struct thr_create_args {
- char ctx_l_[PADL_(ucontext_t *)]; ucontext_t * ctx; char ctx_r_[PADR_(ucontext_t *)];
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
- char s_l_[PADL_(int flag)]; int flag s; char s_r_[PADR_(int flag)];
-};
-struct thr_exit_args {
- register_t dummy;
-};
-struct thr_self_args {
- char id_l_[PADL_(thr_id_t *)]; thr_id_t * id; char id_r_[PADR_(thr_id_t *)];
-};
-struct thr_kill_args {
- char id_l_[PADL_(thr_id_t)]; thr_id_t id; char id_r_[PADR_(thr_id_t)];
- char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
-};
-struct _umtx_lock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct _umtx_unlock_args {
- char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
-};
-struct jail_attach_args {
- char jid_l_[PADL_(int)]; int jid; char jid_r_[PADR_(int)];
-};
int ia32_open(struct thread *, struct ia32_open_args *);
int ia32_wait4(struct thread *, struct ia32_wait4_args *);
int ia32_getfsstat(struct thread *, struct ia32_getfsstat_args *);
@@ -273,13 +249,6 @@ int ia32_ftruncate(struct thread *, struct ia32_ftruncate_args *);
int ia32_sysctl(struct thread *, struct ia32_sysctl_args *);
int ia32_sigaction(struct thread *, struct ia32_sigaction_args *);
int ia32_sendfile(struct thread *, struct ia32_sendfile_args *);
-int thr_create(struct thread *, struct thr_create_args *);
-int thr_exit(struct thread *, struct thr_exit_args *);
-int thr_self(struct thread *, struct thr_self_args *);
-int thr_kill(struct thread *, struct thr_kill_args *);
-int _umtx_lock(struct thread *, struct _umtx_lock_args *);
-int _umtx_unlock(struct thread *, struct _umtx_unlock_args *);
-int jail_attach(struct thread *, struct jail_attach_args *);
#ifdef COMPAT_43
diff --git a/sys/ia64/ia32/ia32_syscall.h b/sys/ia64/ia32/ia32_syscall.h
index c346845..8047bd1 100644
--- a/sys/ia64/ia32/ia32_syscall.h
+++ b/sys/ia64/ia32/ia32_syscall.h
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#define IA32_SYS_syscall 0
diff --git a/sys/ia64/ia32/ia32_sysent.c b/sys/ia64/ia32/ia32_sysent.c
index c48915b..c3d5e6f 100644
--- a/sys/ia64/ia32/ia32_sysent.c
+++ b/sys/ia64/ia32/ia32_sysent.c
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.20 2003/04/24 20:49:46 jhb Exp
+ * created from FreeBSD: src/sys/ia64/ia32/syscalls.master,v 1.21 2003/04/25 15:59:18 jhb Exp
*/
#include "opt_compat.h"
OpenPOWER on IntegriCloud