Module Name:    src
Committed By:   pooka
Date:           Thu Dec 30 20:09:53 UTC 2010

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

Log Message:
Include system call name in comment even for unimplemented syscalls
in rump_syscalls.c.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 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.107 src/sys/kern/makesyscalls.sh:1.108
--- src/sys/kern/makesyscalls.sh:1.107	Thu Dec 30 16:49:24 2010
+++ src/sys/kern/makesyscalls.sh	Thu Dec 30 20:09:53 2010
@@ -1,5 +1,5 @@
 #! /bin/sh -
-#	$NetBSD: makesyscalls.sh,v 1.107 2010/12/30 16:49:24 pooka Exp $
+#	$NetBSD: makesyscalls.sh,v 1.108 2010/12/30 20:09:53 pooka Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -594,8 +594,9 @@
 		flags[0] = "SYCALL_NOSYS"
 		flags[1] = "0"
 		printf("\t{ 0, 0, %s,\n\t    (sy_call_t *)%s }, \t"	\
-		    "/* %d = unrumped */\n",				\
-		    flags[modular], eno[modular], syscall) > rumpsysent
+		    "/* %d = %s */\n",					\
+		    flags[modular], eno[modular], syscall, funcalias)	\
+		    > rumpsysent
 		return
 	}
 

Reply via email to