sigreturn.S revision 92999
1166065Spjd/*-
2166065Spjd * Copyright (c) 1990 The Regents of the University of California.
3166065Spjd * All rights reserved.
4166065Spjd *
5166065Spjd * This code is derived from software contributed to Berkeley by
6166065Spjd * William Jolitz.
7166065Spjd *
8166065Spjd * Redistribution and use in source and binary forms, with or without
9166065Spjd * modification, are permitted provided that the following conditions
10166065Spjd * are met:
11166065Spjd * 1. Redistributions of source code must retain the above copyright
12166065Spjd *    notice, this list of conditions and the following disclaimer.
13166065Spjd * 2. Redistributions in binary form must reproduce the above copyright
14166065Spjd *    notice, this list of conditions and the following disclaimer in the
15166065Spjd *    documentation and/or other materials provided with the distribution.
16166065Spjd * 3. All advertising materials mentioning features or use of this software
17166065Spjd *    must display the following acknowledgement:
18166065Spjd *	This product includes software developed by the University of
19166065Spjd *	California, Berkeley and its contributors.
20166065Spjd * 4. Neither the name of the University nor the names of its contributors
21166065Spjd *    may be used to endorse or promote products derived from this software
22166065Spjd *    without specific prior written permission.
23166065Spjd *
24166065Spjd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25166065Spjd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26166065Spjd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27166065Spjd * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28166065Spjd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29166065Spjd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30166065Spjd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31166065Spjd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32166065Spjd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33166065Spjd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34166065Spjd * SUCH DAMAGE.
35166065Spjd */
36166065Spjd
37166065Spjd#if defined(SYSLIBC_SCCS) && !defined(lint)
38166065Spjd	.asciz "@(#)sigreturn.s	5.2 (Berkeley) 12/17/90"
39166065Spjd#endif /* SYSLIBC_SCCS and not lint */
40166065Spjd#include <machine/asm.h>
41166065Spjd__FBSDID("$FreeBSD: head/lib/libc/i386/sys/sigreturn.S 92999 2002-03-23 02:10:28Z obrien $");
42
43#include "SYS.h"
44
45/*
46 * NOTE: If the profiling ENTRY() code ever changes any registers, they
47 * must be saved.   On FreeBSD, this is not the case.
48 */
49
50RSYSCALL(sigreturn)
51