]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sparc64/SYS.h
MFV r316875: 7336 vfork and O_CLOEXEC causes zfs_mount EBUSY
[FreeBSD/FreeBSD.git] / lib / libc / sparc64 / SYS.h
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1990 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * William Jolitz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)SYS.h       5.5 (Berkeley) 5/7/91
35  *      from: FreeBSD: src/lib/libc/i386/SYS.h,v 1.20 2001/01/29
36  * $FreeBSD$
37  */
38
39 #include <sys/syscall.h>
40
41 #include <machine/asm.h>
42 #include <machine/utrap.h>
43
44 #define ERROR() \
45         mov     %o7, %g1 ; \
46         call    HIDENAME(cerror) ; \
47          mov    %g1, %o7
48
49 #define _SYSENTRY(x) \
50 ENTRY(__CONCAT(__sys_,x)) ; \
51         .weak   CNAME(x) ; \
52         .type   CNAME(x),@function ; \
53         .set    CNAME(x),CNAME(__CONCAT(__sys_,x)) ; \
54         .weak   CNAME(__CONCAT(_,x)) ; \
55         .type   CNAME(__CONCAT(_,x)), @function ; \
56         .set    CNAME(__CONCAT(_,x)),CNAME(__CONCAT(__sys_,x))
57
58 #define _SYSEND(x) \
59         .size   CNAME(__CONCAT(__sys_,x)), . - CNAME(__CONCAT(__sys_,x)) ; \
60         .size   CNAME(__CONCAT(_,x)), . - CNAME(__CONCAT(__sys_,x)) ; \
61         .size   CNAME(__CONCAT(,x)), . - CNAME(__CONCAT(__sys_,x))
62
63 #define _SYSCALL(x) \
64         mov     __CONCAT(SYS_,x), %g1 ; \
65         ta      %xcc, ST_SYSCALL ; \
66         bcc,a,pt %xcc, 1f ; \
67          nop ; \
68         ERROR() ; \
69 1:
70
71 #define RSYSCALL(x) \
72 _SYSENTRY(x) ; \
73         _SYSCALL(x) ; \
74         retl ; \
75          nop ; \
76         _SYSEND(x)
77
78 #define PSEUDO(x) \
79 ENTRY(__CONCAT(__sys_,x)) ; \
80         .weak   CNAME(__CONCAT(_,x)) ; \
81         .type   CNAME(__CONCAT(_,x)),@function ; \
82         .set    CNAME(__CONCAT(_,x)),CNAME(__CONCAT(__sys_,x)) ; \
83         _SYSCALL(x) ; \
84         retl ; \
85          nop ; \
86         .size   CNAME(__CONCAT(__sys_,x)), . - CNAME(__CONCAT(__sys_,x)) ; \
87         .size   CNAME(__CONCAT(_,x)), . - CNAME(__CONCAT(__sys_,x))