mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
Regenerate system call table.
This commit is contained in:
parent
73dcd7db56
commit
c989441af6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285791
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285540 2015-07-14 15:11:50Z ed
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285790 2015-07-22 10:04:53Z ed
|
||||
*/
|
||||
|
||||
#ifndef _CLOUDABI64_SYSPROTO_H_
|
||||
@ -43,6 +43,7 @@ struct cloudabi_sys_clock_time_get_args {
|
||||
};
|
||||
struct cloudabi_sys_condvar_signal_args {
|
||||
char condvar_l_[PADL_(cloudabi_condvar_t *)]; cloudabi_condvar_t * condvar; char condvar_r_[PADR_(cloudabi_condvar_t *)];
|
||||
char scope_l_[PADL_(cloudabi_futexscope_t)]; cloudabi_futexscope_t scope; char scope_r_[PADR_(cloudabi_futexscope_t)];
|
||||
char nwaiters_l_[PADL_(cloudabi_nthreads_t)]; cloudabi_nthreads_t nwaiters; char nwaiters_r_[PADR_(cloudabi_nthreads_t)];
|
||||
};
|
||||
struct cloudabi_sys_fd_close_args {
|
||||
@ -193,6 +194,7 @@ struct cloudabi_sys_file_unlink_args {
|
||||
};
|
||||
struct cloudabi_sys_lock_unlock_args {
|
||||
char lock_l_[PADL_(cloudabi_lock_t *)]; cloudabi_lock_t * lock; char lock_r_[PADR_(cloudabi_lock_t *)];
|
||||
char scope_l_[PADL_(cloudabi_futexscope_t)]; cloudabi_futexscope_t scope; char scope_r_[PADR_(cloudabi_futexscope_t)];
|
||||
};
|
||||
struct cloudabi_sys_mem_advise_args {
|
||||
char addr_l_[PADL_(void *)]; void * addr; char addr_r_[PADR_(void *)];
|
||||
@ -300,6 +302,7 @@ struct cloudabi64_sys_thread_create_args {
|
||||
};
|
||||
struct cloudabi_sys_thread_exit_args {
|
||||
char lock_l_[PADL_(cloudabi_lock_t *)]; cloudabi_lock_t * lock; char lock_r_[PADR_(cloudabi_lock_t *)];
|
||||
char scope_l_[PADL_(cloudabi_futexscope_t)]; cloudabi_futexscope_t scope; char scope_r_[PADR_(cloudabi_futexscope_t)];
|
||||
};
|
||||
struct cloudabi_sys_thread_tcb_set_args {
|
||||
char tcb_l_[PADL_(void *)]; void * tcb; char tcb_r_[PADR_(void *)];
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285540 2015-07-14 15:11:50Z ed
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285790 2015-07-22 10:04:53Z ed
|
||||
*/
|
||||
|
||||
#define CLOUDABI64_SYS_cloudabi_sys_clock_res_get 0
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285540 2015-07-14 15:11:50Z ed
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285790 2015-07-22 10:04:53Z ed
|
||||
*/
|
||||
|
||||
const char *cloudabi64_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285540 2015-07-14 15:11:50Z ed
|
||||
* created from FreeBSD: head/sys/compat/cloudabi64/syscalls.master 285790 2015-07-22 10:04:53Z ed
|
||||
*/
|
||||
|
||||
#include <sys/sysent.h>
|
||||
|
@ -30,8 +30,9 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 2: {
|
||||
struct cloudabi_sys_condvar_signal_args *p = params;
|
||||
uarg[0] = (intptr_t) p->condvar; /* cloudabi_condvar_t * */
|
||||
iarg[1] = p->nwaiters; /* cloudabi_nthreads_t */
|
||||
*n_args = 2;
|
||||
iarg[1] = p->scope; /* cloudabi_futexscope_t */
|
||||
iarg[2] = p->nwaiters; /* cloudabi_nthreads_t */
|
||||
*n_args = 3;
|
||||
break;
|
||||
}
|
||||
/* cloudabi_sys_fd_close */
|
||||
@ -296,7 +297,8 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 31: {
|
||||
struct cloudabi_sys_lock_unlock_args *p = params;
|
||||
uarg[0] = (intptr_t) p->lock; /* cloudabi_lock_t * */
|
||||
*n_args = 1;
|
||||
iarg[1] = p->scope; /* cloudabi_futexscope_t */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* cloudabi_sys_mem_advise */
|
||||
@ -493,7 +495,8 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
case 54: {
|
||||
struct cloudabi_sys_thread_exit_args *p = params;
|
||||
uarg[0] = (intptr_t) p->lock; /* cloudabi_lock_t * */
|
||||
*n_args = 1;
|
||||
iarg[1] = p->scope; /* cloudabi_futexscope_t */
|
||||
*n_args = 2;
|
||||
break;
|
||||
}
|
||||
/* cloudabi_sys_thread_tcb_set */
|
||||
@ -548,6 +551,9 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
p = "cloudabi_condvar_t *";
|
||||
break;
|
||||
case 1:
|
||||
p = "cloudabi_futexscope_t";
|
||||
break;
|
||||
case 2:
|
||||
p = "cloudabi_nthreads_t";
|
||||
break;
|
||||
default:
|
||||
@ -1026,6 +1032,9 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 0:
|
||||
p = "cloudabi_lock_t *";
|
||||
break;
|
||||
case 1:
|
||||
p = "cloudabi_futexscope_t";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
@ -1363,6 +1372,9 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 0:
|
||||
p = "cloudabi_lock_t *";
|
||||
break;
|
||||
case 1:
|
||||
p = "cloudabi_futexscope_t";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user