alias rump_sysent to sysent, since the linux compat code wants to
access it (it calls ptrace, so 0 practical impact here, though).
This commit is contained in:
parent
c978e80017
commit
c189ace80c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue