1*38803Skarels/* 2*38803Skarels * Copyright (c) 1989 Regents of the University of California. 3*38803Skarels * All rights reserved. 4*38803Skarels * 5*38803Skarels * Redistribution and use in source and binary forms are permitted 6*38803Skarels * provided that the above copyright notice and this paragraph are 7*38803Skarels * duplicated in all such forms and that any documentation, 8*38803Skarels * advertising materials, and other materials related to such 9*38803Skarels * distribution and use acknowledge that the software was developed 10*38803Skarels * by the University of California, Berkeley. The name of the 11*38803Skarels * University may not be used to endorse or promote products derived 12*38803Skarels * from this software without specific prior written permission. 13*38803Skarels * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*38803Skarels * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*38803Skarels * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 16*38803Skarels */ 17*38803Skarels 18*38803Skarels#if defined(SYSLIBC_SCCS) && !defined(lint) 19*38803Skarels .asciz "@(#)sigpending.s 5.1 (Berkeley) 08/27/89" 20*38803Skarels#endif /* SYSLIBC_SCCS and not lint */ 21*38803Skarels 22*38803Skarels#include "SYS.h" 23*38803Skarels 24*38803SkarelsSYSCALL(sigpending) 25*38803Skarels movl r0,*4(fp) # store old mask 26*38803Skarels clrl r0 27*38803Skarels ret 28