blob: fa0374a01c993063b38d5ffd56aead5112040a91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $NetBSD: compat_sigsuspend13.S,v 1.2 2011/01/15 07:31:13 matt Exp $ */
#include "SYS.h"
#if defined(LIBC_SCCS)
__RCSID("$NetBSD: compat_sigsuspend13.S,v 1.2 2011/01/15 07:31:13 matt Exp $")
#endif
WARN_REFERENCES(sigsuspend, \
"warning: reference to compatibility sigsuspend(); include <signal.h> for correct reference")
ENTRY(sigsuspend)
lwz %r3,0(%r3) # indirect to mask arg
_DOSYSCALL(compat_13_sigsuspend13)
b _C_LABEL(__cerror) # always terminates with EINTR
END(sigsuspend)
|