Fix some more CERROR inversions

This commit is contained in:
matt 2013-07-25 22:08:15 +00:00
parent c690a93593
commit 7c78a65eeb
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: compat_sigprocmask.S,v 1.3 2013/07/17 04:56:14 matt Exp $ */
/* $NetBSD: compat_sigprocmask.S,v 1.4 2013/07/25 22:08:15 matt Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,7 +39,7 @@
#if 0
RCSID("from: @(#)sigprocmask.s 5.2 (Berkeley) 6/6/90")
#else
RCSID("$NetBSD: compat_sigprocmask.S,v 1.3 2013/07/17 04:56:14 matt Exp $")
RCSID("$NetBSD: compat_sigprocmask.S,v 1.4 2013/07/25 22:08:15 matt Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
@ -58,7 +58,7 @@ gotptr:
movl (%a0),8(%sp) /* indirect to new mask arg */
doit:
SYSTRAP(compat_13_sigprocmask13)
jcc CERROR
jcs CERROR
tstl 12(%sp) /* test if old mask requested */
jeq out
movl 12(%sp),%a0

View File

@ -1,4 +1,4 @@
/* $NetBSD: compat_sigsuspend.S,v 1.2 2013/07/16 23:00:15 matt Exp $ */
/* $NetBSD: compat_sigsuspend.S,v 1.3 2013/07/25 22:08:15 matt Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -39,7 +39,7 @@
#if 0
RCSID("from: @(#)sigsuspend.s 5.2 (Berkeley) 6/6/90")
#else
RCSID("$NetBSD: compat_sigsuspend.S,v 1.2 2013/07/16 23:00:15 matt Exp $")
RCSID("$NetBSD: compat_sigsuspend.S,v 1.3 2013/07/25 22:08:15 matt Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
@ -50,7 +50,7 @@ ENTRY(sigsuspend)
movl 4(%sp),%a0
movl (%a0),4(%sp) /* indirect to mask arg */
SYSTRAP(compat_13_sigsuspend13)
jcc CERROR
jcs CERROR
clrl %d0 /* shouldn't happen */
rts
END(sigsuspend)