OSDN Git Service

81c82c80174438a76eb19a81d64ab71ff78338c3
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / bits / syscalls-common.h
1 /*
2  * Common syscall type defines
3  *
4  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5  */
6
7 #ifndef _SYSCALLS_COMMON_H
8 #define _SYSCALLS_COMMON_H      1
9
10 #ifndef _SYSCALL_H
11 # error "Never use <bits/syscalls-common.h> directly; include <sys/syscall.h> instead."
12 #endif
13
14 #ifndef SYS_ify
15 # define SYS_ify(syscall_name) (__NR_##syscall_name)
16 #endif
17
18 #ifndef __ASSEMBLER__
19
20 #include <errno.h>
21
22 #ifndef INTERNAL_SYSCALL_DECL
23 # define INTERNAL_SYSCALL_DECL(err)         do { } while (0)
24 #endif
25 #ifndef INTERNAL_SYSCALL_ERROR_P
26 # define INTERNAL_SYSCALL_ERROR_P(val, err) ((unsigned long)val >= (unsigned long)(-4095))
27 #endif
28 #ifndef INTERNAL_SYSCALL_ERRNO
29 # define INTERNAL_SYSCALL_ERRNO(val, err)   (-(val))
30 #endif
31
32 /* Define a macro which expands into the inline wrapper code for a system call */
33 #ifndef INLINE_SYSCALL
34 # define INLINE_SYSCALL(name, nr, args...)                              \
35 ({                                                                      \
36         INTERNAL_SYSCALL_DECL(err);                                     \
37         long res = INTERNAL_SYSCALL(name, err, nr, args);               \
38         if (unlikely(INTERNAL_SYSCALL_ERROR_P(res, err))) {             \
39                 __set_errno(INTERNAL_SYSCALL_ERRNO(res, err));          \
40                 res = -1L;                                              \
41         }                                                               \
42         res;                                                            \
43 })
44 #endif
45
46 #ifndef _syscall0
47
48 #define C_DECL_ARGS_0()                 void
49 #define C_DECL_ARGS_1(t, v)             t v
50 #define C_DECL_ARGS_2(t, v, args...)    t v, C_DECL_ARGS_1(args)
51 #define C_DECL_ARGS_3(t, v, args...)    t v, C_DECL_ARGS_2(args)
52 #define C_DECL_ARGS_4(t, v, args...)    t v, C_DECL_ARGS_3(args)
53 #define C_DECL_ARGS_5(t, v, args...)    t v, C_DECL_ARGS_4(args)
54 #define C_DECL_ARGS_6(t, v, args...)    t v, C_DECL_ARGS_5(args)
55
56 #define C_ARGS_0()
57 #define C_ARGS_1(t, v)                  v
58 #define C_ARGS_2(t, v, args...)         v, C_ARGS_1(args)
59 #define C_ARGS_3(t, v, args...)         v, C_ARGS_2(args)
60 #define C_ARGS_4(t, v, args...)         v, C_ARGS_3(args)
61 #define C_ARGS_5(t, v, args...)         v, C_ARGS_4(args)
62 #define C_ARGS_6(t, v, args...)         v, C_ARGS_5(args)
63
64 #define SYSCALL_FUNC(nargs, type, name, args...)                        \
65 type name(C_DECL_ARGS_##nargs(args)) {                                  \
66         return (type)INLINE_SYSCALL(name, nargs, C_ARGS_##nargs(args)); \
67 }
68
69 #define _syscall0(args...)              SYSCALL_FUNC(0, args)
70 #define _syscall1(args...)              SYSCALL_FUNC(1, args)
71 #define _syscall2(args...)              SYSCALL_FUNC(2, args)
72 #define _syscall3(args...)              SYSCALL_FUNC(3, args)
73 #define _syscall4(args...)              SYSCALL_FUNC(4, args)
74 #define _syscall5(args...)              SYSCALL_FUNC(5, args)
75 #define _syscall6(args...)              SYSCALL_FUNC(6, args)
76
77 #endif /* _syscall0 */
78
79 #endif /* __ASSEMBLER__ */
80
81 #endif