__posix_fadvise50() does not use the standard errno behaviour, but returns
the error value itself - so move it from ASM to NOERR. Pointed out by Nick. I have no idea how/if this ever could have worked, but I would swear I realy tested it when I last touched it! Fixes the sys/fs/posix_fadvise regression test.
This commit is contained in:
parent
ca3f8e6df1
commit
9e8a2fc070
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.inc,v 1.199 2009/01/16 00:02:57 christos Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.200 2009/01/29 08:47:43 martin Exp $
|
||||
# @(#)Makefile.inc 8.3 (Berkeley) 10/24/94
|
||||
|
||||
# sys sources
|
||||
|
@ -109,7 +109,6 @@ ASM= access.S acct.S \
|
|||
__msgctl50.S msgget.S munlock.S munlockall.S munmap.S \
|
||||
nfssvc.S __ntp_gettime50.S \
|
||||
pathconf.S pmc_get_info.S pmc_control.S __posix_chown.S \
|
||||
__posix_fadvise50.S \
|
||||
__posix_fchown.S __posix_lchown.S __posix_rename.S profil.S \
|
||||
quotactl.S \
|
||||
rasctl.S reboot.S recvfrom.S recvmsg.S rename.S revoke.S \
|
||||
|
@ -151,7 +150,7 @@ WEAKASM= accept.S __aio_suspend50.S close.S connect.S execve.S \
|
|||
__wait450.S write.S writev.S
|
||||
|
||||
NOERR= getegid.S geteuid.S getgid.S getpid.S getppid.S getuid.S \
|
||||
issetugid.S sync.S
|
||||
issetugid.S sync.S __posix_fadvise50.S
|
||||
|
||||
PSEUDONOERR= _exit.S
|
||||
|
||||
|
|
Loading…
Reference in New Issue