aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/sysproto.h
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2021-11-10 17:56:51 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-11-10 19:18:54 +0000
commit439c3d95638ae1e11ae3184634e07292b139115e (patch)
treeaf6a6f1577a71a49b110864f68d77f7c378148ba /sys/sys/sysproto.h
parent43e6f07b06e05cd36c22b204be5be94c2807aec8 (diff)
downloadsrc-439c3d95638ae1e11ae3184634e07292b139115e.tar.gz
src-439c3d95638ae1e11ae3184634e07292b139115e.zip
Regen
Diffstat (limited to 'sys/sys/sysproto.h')
-rw-r--r--sys/sys/sysproto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index cec3c1925e5d..2a89ee0770f3 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -1854,6 +1854,9 @@ struct fspacectl_args {
char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
char rmsr_l_[PADL_(struct spacectl_range *)]; struct spacectl_range * rmsr; char rmsr_r_[PADR_(struct spacectl_range *)];
};
+struct sched_getcpu_args {
+ register_t dummy;
+};
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 *);
@@ -2249,6 +2252,7 @@ int sys___specialfd(struct thread *, struct __specialfd_args *);
int sys_aio_writev(struct thread *, struct aio_writev_args *);
int sys_aio_readv(struct thread *, struct aio_readv_args *);
int sys_fspacectl(struct thread *, struct fspacectl_args *);
+int sys_sched_getcpu(struct thread *, struct sched_getcpu_args *);
#ifdef COMPAT_43
@@ -3194,6 +3198,7 @@ int freebsd12_closefrom(struct thread *, struct freebsd12_closefrom_args *);
#define SYS_AUE_aio_writev AUE_AIO_WRITEV
#define SYS_AUE_aio_readv AUE_AIO_READV
#define SYS_AUE_fspacectl AUE_FSPACECTL
+#define SYS_AUE_sched_getcpu AUE_NULL
#undef PAD_
#undef PADL_