Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Regenerate kern/systrace_args.c for the ___lwp_wait...
details: https://anonhg.NetBSD.org/src/rev/05d3d9c8575f
branches: trunk
changeset: 358261:05d3d9c8575f
user: kamil <kamil%NetBSD.org@localhost>
date: Tue Dec 19 08:51:09 2017 +0000
description:
Regenerate kern/systrace_args.c for the ___lwp_wait60 prototype change
___lwp_part60 removed 'const' from the ts argument.
'const struct timespec *ts' -> 'struct timespec *ts'
Sponsored by <The NetBSD Foundation>
diffstat:
sys/kern/systrace_args.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 9a7e78526f74 -r 05d3d9c8575f sys/kern/systrace_args.c
--- a/sys/kern/systrace_args.c Tue Dec 19 08:48:19 2017 +0000
+++ b/sys/kern/systrace_args.c Tue Dec 19 08:51:09 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: systrace_args.c,v 1.25 2017/12/19 08:48:19 kamil Exp $ */
+/* $NetBSD: systrace_args.c,v 1.26 2017/12/19 08:51:09 kamil Exp $ */
/*
* System call argument to DTrace register array converstion.
@@ -3630,7 +3630,7 @@
const struct sys____lwp_park60_args *p = params;
iarg[0] = SCARG(p, clock_id); /* clockid_t */
iarg[1] = SCARG(p, flags); /* int */
- uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
+ uarg[2] = (intptr_t) SCARG(p, ts); /* struct timespec * */
iarg[3] = SCARG(p, unpark); /* lwpid_t */
uarg[4] = (intptr_t) SCARG(p, hint); /* const void * */
uarg[5] = (intptr_t) SCARG(p, unparkhint); /* const void * */
@@ -9815,7 +9815,7 @@
p = "int";
break;
case 2:
- p = "const struct timespec *";
+ p = "struct timespec *";
break;
case 3:
p = "lwpid_t";
Home |
Main Index |
Thread Index |
Old Index