17 lines
497 B
ArmAsm
17 lines
497 B
ArmAsm
|
/* $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)
|