Module Name:    src
Committed By:   pooka
Date:           Thu Sep 20 17:46:21 UTC 2012

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

Log Message:
alias rump_sysent to sysent, since the linux compat code wants to
access it (it calls ptrace, so 0 practical impact here, though).


To generate a diff of this commit:
cvs rdiff -u -r1.125 -r1.126 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.125 src/sys/kern/makesyscalls.sh:1.126
--- src/sys/kern/makesyscalls.sh:1.125	Fri Aug  3 18:08:01 2012
+++ src/sys/kern/makesyscalls.sh	Thu Sep 20 17:46:21 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.125 2012/08/03 18:08:01 matt Exp $
+#	$NetBSD: makesyscalls.sh,v 1.126 2012/09/20 17:46:21 pooka Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -964,6 +964,7 @@ END {
 	printf("};\n") > sysent
 	printf("};\n") > rumpsysent
 	printf("CTASSERT(__arraycount(rump_sysent) == SYS_NSYSENT);\n") > rumpsysent
+	printf("__strong_alias(sysent,rump_sysent);\n") > rumpsysent
 	printf("#endif /* RUMP_CLIENT */\n") > rumpsysent
 	if (haverumpcalls)
 		printf("#endif /* !RUMP_CLIENT */\n") > sysprotos

Reply via email to