diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2024-10-01 17:04:21 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2024-10-01 17:46:40 +0000 |
commit | d9d2e3ab7cf2b60ac5afe0d1a0a14d5bc39d7061 (patch) | |
tree | 486de5deed2ab17bf110f0d26dd16f2676b9984a | |
parent | 0d490c6a445a5e94e5d50b65aa96ab72eeafe15f (diff) | |
download | src-d9d2e3ab7cf2b60ac5afe0d1a0a14d5bc39d7061.tar.gz src-d9d2e3ab7cf2b60ac5afe0d1a0a14d5bc39d7061.zip |
sysent: regen comments
-rw-r--r-- | lib/libsys/_libsys.h | 2 | ||||
-rw-r--r-- | lib/libsys/syscalls.map | 3 | ||||
-rw-r--r-- | sys/amd64/linux/linux_systrace_args.c | 3 | ||||
-rw-r--r-- | sys/amd64/linux32/linux32_systrace_args.c | 3 | ||||
-rw-r--r-- | sys/arm64/linux/linux_systrace_args.c | 3 | ||||
-rw-r--r-- | sys/compat/freebsd32/freebsd32_systrace_args.c | 3 | ||||
-rw-r--r-- | sys/i386/linux/linux_systrace_args.c | 3 | ||||
-rw-r--r-- | sys/kern/systrace_args.c | 3 | ||||
-rw-r--r-- | sys/sys/syscall.mk | 4 |
9 files changed, 19 insertions, 8 deletions
diff --git a/lib/libsys/_libsys.h b/lib/libsys/_libsys.h index 4565740a25bc..fcb10ad40c8e 100644 --- a/lib/libsys/_libsys.h +++ b/lib/libsys/_libsys.h @@ -3,7 +3,7 @@ * * Do not use directly, include <libsys.h> instead. * - * DO NOT EDIT-- this file is automatically @generated. + * DO NOT EDIT-- this file is automatically @generated. */ #ifndef __LIBSYS_H_ #define __LIBSYS_H_ diff --git a/lib/libsys/syscalls.map b/lib/libsys/syscalls.map index 3d952c691afd..334077c6bb2f 100644 --- a/lib/libsys/syscalls.map +++ b/lib/libsys/syscalls.map @@ -1,6 +1,7 @@ /* * FreeBSD system call symbols. - * DO NOT EDIT-- this file is automatically @generated. + * + * DO NOT EDIT-- this file is automatically @generated. */ FBSDprivate_1.0 { _syscall; diff --git a/sys/amd64/linux/linux_systrace_args.c b/sys/amd64/linux/linux_systrace_args.c index 0126fdf7aa5a..d0738267b35a 100644 --- a/sys/amd64/linux/linux_systrace_args.c +++ b/sys/amd64/linux/linux_systrace_args.c @@ -1,8 +1,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/amd64/linux32/linux32_systrace_args.c b/sys/amd64/linux32/linux32_systrace_args.c index a37de1d753dd..cf9d5b64a87f 100644 --- a/sys/amd64/linux32/linux32_systrace_args.c +++ b/sys/amd64/linux32/linux32_systrace_args.c @@ -1,8 +1,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/arm64/linux/linux_systrace_args.c b/sys/arm64/linux/linux_systrace_args.c index 73b3bf107486..9e7b0935e560 100644 --- a/sys/arm64/linux/linux_systrace_args.c +++ b/sys/arm64/linux/linux_systrace_args.c @@ -1,8 +1,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/compat/freebsd32/freebsd32_systrace_args.c b/sys/compat/freebsd32/freebsd32_systrace_args.c index 9992242dba25..80b4a2ed0109 100644 --- a/sys/compat/freebsd32/freebsd32_systrace_args.c +++ b/sys/compat/freebsd32/freebsd32_systrace_args.c @@ -4,8 +4,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/i386/linux/linux_systrace_args.c b/sys/i386/linux/linux_systrace_args.c index 4ec9ca460802..041ee80fd4ff 100644 --- a/sys/i386/linux/linux_systrace_args.c +++ b/sys/i386/linux/linux_systrace_args.c @@ -1,8 +1,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/kern/systrace_args.c b/sys/kern/systrace_args.c index 2454a8b5137b..c2e1f22cbf87 100644 --- a/sys/kern/systrace_args.c +++ b/sys/kern/systrace_args.c @@ -1,8 +1,9 @@ /* * System call argument to DTrace register array converstion. * - * DO NOT EDIT-- this file is automatically @generated. * This file is part of the DTrace syscall provider. + * + * DO NOT EDIT-- this file is automatically @generated. */ static void diff --git a/sys/sys/syscall.mk b/sys/sys/syscall.mk index 6c8830042045..4aa282724ab5 100644 --- a/sys/sys/syscall.mk +++ b/sys/sys/syscall.mk @@ -1,5 +1,9 @@ +# # FreeBSD system call object files. +# # DO NOT EDIT-- this file is automatically @generated. +# + MIASM = \ syscall.o \ exit.o \ |