From b2f5ccfa53b23c3e6406e04932e9bcf5bed60eaa Mon Sep 17 00:00:00 2001 From: mux Date: Sun, 5 May 2002 23:47:41 +0000 Subject: Add the lchflags(2) syscall. Reviewed by: rwatson --- sys/sys/sysproto.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sys/sys/sysproto.h') diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h index 80385c0..011dc92 100644 --- a/sys/sys/sysproto.h +++ b/sys/sys/sysproto.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/kern/syscalls.master,v 1.109 2002/04/14 05:31:47 alc Exp + * created from FreeBSD: src/sys/kern/syscalls.master,v 1.111 2002/05/05 23:37:44 mux Exp */ #ifndef _SYS_SYSPROTO_H_ @@ -1111,6 +1111,10 @@ struct kenv_args { char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)]; char len_l_[PADL_(int)]; int len; char len_r_[PADR_(int)]; }; +struct lchflags_args { + char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; + char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)]; +}; int nosys(struct thread *, struct nosys_args *); void sys_exit(struct thread *, struct sys_exit_args *); int fork(struct thread *, struct fork_args *); @@ -1361,6 +1365,7 @@ int kse_new(struct thread *, struct kse_new_args *); int thread_wakeup(struct thread *, struct thread_wakeup_args *); int kse_yield(struct thread *, struct kse_yield_args *); int kenv(struct thread *, struct kenv_args *); +int lchflags(struct thread *, struct lchflags_args *); #ifdef COMPAT_43 -- cgit v1.1