Module Name:    src
Committed By:   thorpej
Date:           Wed Apr 22 21:25:18 UTC 2020

Modified Files:
        src/sys/compat/netbsd32: netbsd32_syscall.h netbsd32_syscallargs.h
            netbsd32_syscalls.c netbsd32_syscalls_autoload.c netbsd32_sysent.c
            netbsd32_systrace_args.c
        src/sys/kern: init_sysent.c syscalls.c syscalls_autoload.c
            systrace_args.c
        src/sys/rump/include/rump: rump_syscalls.h
        src/sys/rump/librump/rumpkern: rump_syscalls.c
        src/sys/sys: syscall.h syscallargs.h

Log Message:
Regen for removal of _lwp_gettid(2).


To generate a diff of this commit:
cvs rdiff -u -r1.151 -r1.152 src/sys/compat/netbsd32/netbsd32_syscall.h
cvs rdiff -u -r1.150 -r1.151 src/sys/compat/netbsd32/netbsd32_syscallargs.h \
    src/sys/compat/netbsd32/netbsd32_syscalls.c
cvs rdiff -u -r1.30 -r1.31 \
    src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c
cvs rdiff -u -r1.149 -r1.150 src/sys/compat/netbsd32/netbsd32_sysent.c
cvs rdiff -u -r1.41 -r1.42 src/sys/compat/netbsd32/netbsd32_systrace_args.c
cvs rdiff -u -r1.328 -r1.329 src/sys/kern/init_sysent.c
cvs rdiff -u -r1.316 -r1.317 src/sys/kern/syscalls.c
cvs rdiff -u -r1.33 -r1.34 src/sys/kern/syscalls_autoload.c
cvs rdiff -u -r1.35 -r1.36 src/sys/kern/systrace_args.c
cvs rdiff -u -r1.114 -r1.115 src/sys/rump/include/rump/rump_syscalls.h
cvs rdiff -u -r1.145 -r1.146 src/sys/rump/librump/rumpkern/rump_syscalls.c
cvs rdiff -u -r1.310 -r1.311 src/sys/sys/syscall.h
cvs rdiff -u -r1.294 -r1.295 src/sys/sys/syscallargs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/netbsd32/netbsd32_syscall.h
diff -u src/sys/compat/netbsd32/netbsd32_syscall.h:1.151 src/sys/compat/netbsd32/netbsd32_syscall.h:1.152
--- src/sys/compat/netbsd32/netbsd32_syscall.h:1.151	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_syscall.h	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.151 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.152 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.134 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.135 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifndef _NETBSD32_SYS_SYSCALL_H_
@@ -875,9 +875,6 @@
 /* syscall: "netbsd32__lwp_ctl" ret: "int" args: "int" "netbsd32_pointer_t" */
 #define	NETBSD32_SYS_netbsd32__lwp_ctl	325
 
-/* syscall: "_lwp_gettid" ret: "lwptid_t" args: */
-#define	NETBSD32_SYS__lwp_gettid	326
-
 				/* 330 is obsolete netbsd32_sa_register */
 				/* 331 is obsolete netbsd32_sa_stacks */
 				/* 332 is obsolete sa_enable */

Index: src/sys/compat/netbsd32/netbsd32_syscallargs.h
diff -u src/sys/compat/netbsd32/netbsd32_syscallargs.h:1.150 src/sys/compat/netbsd32/netbsd32_syscallargs.h:1.151
--- src/sys/compat/netbsd32/netbsd32_syscallargs.h:1.150	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_syscallargs.h	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.150 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.151 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.134 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.135 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifndef _NETBSD32_SYS_SYSCALLARGS_H_
@@ -3214,8 +3214,6 @@ int	netbsd32__lwp_getname(struct lwp *, 
 
 int	netbsd32__lwp_ctl(struct lwp *, const struct netbsd32__lwp_ctl_args *, register_t *);
 
-int	sys__lwp_gettid(struct lwp *, const void *, register_t *);
-
 int	netbsd32___sigaction_sigtramp(struct lwp *, const struct netbsd32___sigaction_sigtramp_args *, register_t *);
 
 int	netbsd32_rasctl(struct lwp *, const struct netbsd32_rasctl_args *, register_t *);
Index: src/sys/compat/netbsd32/netbsd32_syscalls.c
diff -u src/sys/compat/netbsd32/netbsd32_syscalls.c:1.150 src/sys/compat/netbsd32/netbsd32_syscalls.c:1.151
--- src/sys/compat/netbsd32/netbsd32_syscalls.c:1.150	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_syscalls.c	Wed Apr 22 21:25:18 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.150 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.151 2020/04/22 21:25:18 thorpej Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.134 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.135 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.150 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.151 2020/04/22 21:25:18 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
@@ -360,7 +360,7 @@ const char *const netbsd32_syscallnames[
 	/* 323 */	"netbsd32__lwp_setname",
 	/* 324 */	"netbsd32__lwp_getname",
 	/* 325 */	"netbsd32__lwp_ctl",
-	/* 326 */	"_lwp_gettid",
+	/* 326 */	"#326 (unimplemented)",
 	/* 327 */	"#327 (unimplemented)",
 	/* 328 */	"#328 (unimplemented)",
 	/* 329 */	"#329 (unimplemented)",
@@ -885,7 +885,7 @@ const char *const altnetbsd32_syscallnam
 	/* 323 */	"_lwp_setname",
 	/* 324 */	"_lwp_getname",
 	/* 325 */	"_lwp_ctl",
-	/* 326 */	NULL, /* _lwp_gettid */
+	/* 326 */	NULL, /* unimplemented */
 	/* 327 */	NULL, /* unimplemented */
 	/* 328 */	NULL, /* unimplemented */
 	/* 329 */	NULL, /* unimplemented */

Index: src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c
diff -u src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c:1.30 src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c:1.31
--- src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c:1.30	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_syscalls_autoload.c	Wed Apr 22 21:25:18 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls_autoload.c,v 1.30 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_syscalls_autoload.c,v 1.31 2020/04/22 21:25:18 thorpej Exp $ */
 
 /*
  * System call autoload table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.134 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.135 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls_autoload.c,v 1.30 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls_autoload.c,v 1.31 2020/04/22 21:25:18 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"

Index: src/sys/compat/netbsd32/netbsd32_sysent.c
diff -u src/sys/compat/netbsd32/netbsd32_sysent.c:1.149 src/sys/compat/netbsd32/netbsd32_sysent.c:1.150
--- src/sys/compat/netbsd32/netbsd32_sysent.c:1.149	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_sysent.c	Wed Apr 22 21:25:18 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_sysent.c,v 1.149 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_sysent.c,v 1.150 2020/04/22 21:25:18 thorpej Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.134 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.135 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.149 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.150 2020/04/22 21:25:18 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -1385,8 +1385,8 @@ struct sysent netbsd32_sysent[] = {
 		.sy_call = (sy_call_t *)netbsd32__lwp_ctl
 	},		/* 325 = netbsd32__lwp_ctl */
 	{
-		.sy_call = (sy_call_t *)sys__lwp_gettid
-	},		/* 326 = _lwp_gettid */
+		.sy_call = sys_nosys,
+	},		/* 326 = filler */
 	{
 		.sy_call = sys_nosys,
 	},		/* 327 = filler */

Index: src/sys/compat/netbsd32/netbsd32_systrace_args.c
diff -u src/sys/compat/netbsd32/netbsd32_systrace_args.c:1.41 src/sys/compat/netbsd32/netbsd32_systrace_args.c:1.42
--- src/sys/compat/netbsd32/netbsd32_systrace_args.c:1.41	Sat Apr  4 20:27:27 2020
+++ src/sys/compat/netbsd32/netbsd32_systrace_args.c	Wed Apr 22 21:25:18 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_systrace_args.c,v 1.41 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: netbsd32_systrace_args.c,v 1.42 2020/04/22 21:25:18 thorpej Exp $ */
 
 /*
  * System call argument to DTrace register array converstion.
@@ -2313,11 +2313,6 @@ systrace_args(register_t sysnum, const v
 		*n_args = 2;
 		break;
 	}
-	/* sys__lwp_gettid */
-	case 326: {
-		*n_args = 0;
-		break;
-	}
 	/* netbsd32___sigaction_sigtramp */
 	case 340: {
 		const struct netbsd32___sigaction_sigtramp_args *p = params;
@@ -7316,9 +7311,6 @@ systrace_entry_setargdesc(int sysnum, in
 			break;
 		};
 		break;
-	/* sys__lwp_gettid */
-	case 326:
-		break;
 	/* netbsd32___sigaction_sigtramp */
 	case 340:
 		switch(ndx) {
@@ -10868,8 +10860,6 @@ systrace_return_setargdesc(int sysnum, i
 		if (ndx == 0 || ndx == 1)
 			p = "int";
 		break;
-	/* sys__lwp_gettid */
-	case 326:
 	/* netbsd32___sigaction_sigtramp */
 	case 340:
 		if (ndx == 0 || ndx == 1)

Index: src/sys/kern/init_sysent.c
diff -u src/sys/kern/init_sysent.c:1.328 src/sys/kern/init_sysent.c:1.329
--- src/sys/kern/init_sysent.c:1.328	Sat Apr  4 20:27:27 2020
+++ src/sys/kern/init_sysent.c	Wed Apr 22 21:25:17 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.328 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: init_sysent.c,v 1.329 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.328 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.329 2020/04/22 21:25:17 thorpej Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_modular.h"
@@ -1597,8 +1597,8 @@ struct sysent sysent[] = {
 		.sy_call = (sy_call_t *)sys__lwp_ctl
 	},		/* 325 = _lwp_ctl */
 	{
-		.sy_call = (sy_call_t *)sys__lwp_gettid
-	},		/* 326 = _lwp_gettid */
+		.sy_call = sys_nosys,
+	},		/* 326 = filler */
 	{
 		.sy_call = sys_nosys,
 	},		/* 327 = filler */

Index: src/sys/kern/syscalls.c
diff -u src/sys/kern/syscalls.c:1.316 src/sys/kern/syscalls.c:1.317
--- src/sys/kern/syscalls.c:1.316	Sat Apr  4 20:27:27 2020
+++ src/sys/kern/syscalls.c	Wed Apr 22 21:25:17 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.316 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: syscalls.c,v 1.317 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.316 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.317 2020/04/22 21:25:17 thorpej Exp $");
 
 #if defined(_KERNEL_OPT)
 #ifdef _KERNEL_OPT
@@ -371,7 +371,7 @@ const char *const syscallnames[] = {
 	/* 323 */	"_lwp_setname",
 	/* 324 */	"_lwp_getname",
 	/* 325 */	"_lwp_ctl",
-	/* 326 */	"_lwp_gettid",
+	/* 326 */	"#326 (unimplemented)",
 	/* 327 */	"#327 (unimplemented)",
 	/* 328 */	"#328 (unimplemented)",
 	/* 329 */	"#329 (unimplemented)",
@@ -908,7 +908,7 @@ const char *const altsyscallnames[] = {
 	/* 323 */	NULL, /* _lwp_setname */
 	/* 324 */	NULL, /* _lwp_getname */
 	/* 325 */	NULL, /* _lwp_ctl */
-	/* 326 */	NULL, /* _lwp_gettid */
+	/* 326 */	NULL, /* unimplemented */
 	/* 327 */	NULL, /* unimplemented */
 	/* 328 */	NULL, /* unimplemented */
 	/* 329 */	NULL, /* unimplemented */

Index: src/sys/kern/syscalls_autoload.c
diff -u src/sys/kern/syscalls_autoload.c:1.33 src/sys/kern/syscalls_autoload.c:1.34
--- src/sys/kern/syscalls_autoload.c:1.33	Sat Apr  4 20:27:27 2020
+++ src/sys/kern/syscalls_autoload.c	Wed Apr 22 21:25:17 2020
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls_autoload.c,v 1.33 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: syscalls_autoload.c,v 1.34 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call autoload table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.33 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.34 2020/04/22 21:25:17 thorpej Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_modular.h"

Index: src/sys/kern/systrace_args.c
diff -u src/sys/kern/systrace_args.c:1.35 src/sys/kern/systrace_args.c:1.36
--- src/sys/kern/systrace_args.c:1.35	Sat Apr  4 20:27:27 2020
+++ src/sys/kern/systrace_args.c	Wed Apr 22 21:25:17 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: systrace_args.c,v 1.35 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: systrace_args.c,v 1.36 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call argument to DTrace register array converstion.
@@ -2374,11 +2374,6 @@ systrace_args(register_t sysnum, const v
 		*n_args = 2;
 		break;
 	}
-	/* sys__lwp_gettid */
-	case 326: {
-		*n_args = 0;
-		break;
-	}
 	/* sys_sa_register */
 	case 330: {
 		const struct compat_60_sys_sa_register_args *p = params;
@@ -7597,9 +7592,6 @@ systrace_entry_setargdesc(int sysnum, in
 			break;
 		};
 		break;
-	/* sys__lwp_gettid */
-	case 326:
-		break;
 	/* sys_sa_register */
 	case 330:
 		switch(ndx) {
@@ -11373,8 +11365,6 @@ systrace_return_setargdesc(int sysnum, i
 		if (ndx == 0 || ndx == 1)
 			p = "int";
 		break;
-	/* sys__lwp_gettid */
-	case 326:
 	/* sys_sa_register */
 	case 330:
 		if (ndx == 0 || ndx == 1)

Index: src/sys/rump/include/rump/rump_syscalls.h
diff -u src/sys/rump/include/rump/rump_syscalls.h:1.114 src/sys/rump/include/rump/rump_syscalls.h:1.115
--- src/sys/rump/include/rump/rump_syscalls.h:1.114	Sat Apr  4 20:27:27 2020
+++ src/sys/rump/include/rump/rump_syscalls.h	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.h,v 1.114 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: rump_syscalls.h,v 1.115 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call protos in rump namespace.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifndef _RUMP_RUMP_SYSCALLS_H_

Index: src/sys/rump/librump/rumpkern/rump_syscalls.c
diff -u src/sys/rump/librump/rumpkern/rump_syscalls.c:1.145 src/sys/rump/librump/rumpkern/rump_syscalls.c:1.146
--- src/sys/rump/librump/rumpkern/rump_syscalls.c:1.145	Sat Apr  4 20:27:27 2020
+++ src/sys/rump/librump/rumpkern/rump_syscalls.c	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.c,v 1.145 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: rump_syscalls.c,v 1.146 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call vector and marshalling for rump.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifdef RUMP_CLIENT
@@ -15,7 +15,7 @@
 
 #ifdef __NetBSD__
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.145 2020/04/04 20:27:27 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.146 2020/04/22 21:25:17 thorpej Exp $");
 
 #include <sys/fstypes.h>
 #include <sys/proc.h>
@@ -7821,8 +7821,9 @@ struct sysent rump_sysent[] = {
 		.sy_call = (sy_call_t *)(void *)rumpns_enosys,
 },		/* 325 = _lwp_ctl */
 	{
+		.sy_flags = SYCALL_NOSYS,
 		.sy_call = (sy_call_t *)(void *)rumpns_enosys,
-},		/* 326 = _lwp_gettid */
+	},		/* 326 = filler */
 	{
 		.sy_flags = SYCALL_NOSYS,
 		.sy_call = (sy_call_t *)(void *)rumpns_enosys,

Index: src/sys/sys/syscall.h
diff -u src/sys/sys/syscall.h:1.310 src/sys/sys/syscall.h:1.311
--- src/sys/sys/syscall.h:1.310	Sat Apr  4 20:27:27 2020
+++ src/sys/sys/syscall.h	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.310 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: syscall.h,v 1.311 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifndef _SYS_SYSCALL_H_
@@ -900,9 +900,6 @@
 /* syscall: "_lwp_ctl" ret: "int" args: "int" "struct lwpctl **" */
 #define	SYS__lwp_ctl	325
 
-/* syscall: "_lwp_gettid" ret: "lwptid_t" args: */
-#define	SYS__lwp_gettid	326
-
 /* syscall: "compat_60_sa_register" ret: "int" args: "void *" "void **" "int" "ssize_t" */
 #define	SYS_compat_60_sa_register	330
 

Index: src/sys/sys/syscallargs.h
diff -u src/sys/sys/syscallargs.h:1.294 src/sys/sys/syscallargs.h:1.295
--- src/sys/sys/syscallargs.h:1.294	Sat Apr  4 20:27:27 2020
+++ src/sys/sys/syscallargs.h	Wed Apr 22 21:25:17 2020
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.294 2020/04/04 20:27:27 thorpej Exp $ */
+/* $NetBSD: syscallargs.h,v 1.295 2020/04/22 21:25:17 thorpej Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.298 2020/04/04 20:20:12 thorpej Exp
+ * created from	NetBSD: syscalls.master,v 1.302 2020/04/22 21:22:21 thorpej Exp
  */
 
 #ifndef _SYS_SYSCALLARGS_H_
@@ -3766,8 +3766,6 @@ int	sys__lwp_getname(struct lwp *, const
 
 int	sys__lwp_ctl(struct lwp *, const struct sys__lwp_ctl_args *, register_t *);
 
-int	sys__lwp_gettid(struct lwp *, const void *, register_t *);
-
 int	compat_60_sys_sa_register(struct lwp *, const struct compat_60_sys_sa_register_args *, register_t *);
 
 int	compat_60_sys_sa_stacks(struct lwp *, const struct compat_60_sys_sa_stacks_args *, register_t *);

Reply via email to