Module Name:    src
Committed By:   kamil
Date:           Tue Jun  2 13:49:15 UTC 2020

Modified Files:
        src/sys/kern: makesyscalls.sh

Log Message:
Synchronize struct name in rump_syscalls.c and syscallargs.h

Whenever a syscall has alias name, the struct sys_ names shall be the same.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/sys/kern/makesyscalls.sh

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

Modified files:

Index: src/sys/kern/makesyscalls.sh
diff -u src/sys/kern/makesyscalls.sh:1.176 src/sys/kern/makesyscalls.sh:1.177
--- src/sys/kern/makesyscalls.sh:1.176	Sat Nov  9 22:05:50 2019
+++ src/sys/kern/makesyscalls.sh	Tue Jun  2 13:49:15 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.176 2019/11/09 22:05:50 jdolecek Exp $
+#	$NetBSD: makesyscalls.sh,v 1.177 2020/06/02 13:49:15 kamil Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -765,7 +765,7 @@ function printrumpsysent(insysent, compa
 
 	printf("\t{") > rumpsysent
 	if (argc != 0) {
-		printf("\n\t\tns(struct %ssys_%s_args),", compatwrap_, funcalias) > rumpsysent
+		printf("\n\t\tns(struct %s%s_args),", compatwrap_, funcname) > rumpsysent
 	}
 
 	printf("\n\t\t.sy_call = %s,\n\t},", fn) > rumpsysent

Reply via email to