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