blob: 1906a949c8b46227a028ae9c5356759b3c93911f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#include <sys/syscall.h>
#ifdef __STDC__
#define SYS(X) SYS_##X
#ifdef __ELF__
#define NAME(X) machdep_sys_##X
#else
#define NAME(X) _machdep_sys_##X
#endif
#else
#define SYS(X) SYS_/**/X
#ifdef __ELF__
#define NAME(X) machdep_sys_/**/X
#else
#define NAME(X) _machdep_sys_/**/X
#endif
#endif
#ifdef __ELF__
#define END(X) 5: ; .type NAME(X),@function ; .size NAME(X),5b - NAME(X)
#define KERNCALL int $0x80
#else
#define END(X)
#define KERNCALL .byte 0x9a; .long 0; .word 7;
#endif
#define SYSCALL(x) \
.globl NAME(x); \
\
NAME(x):; \
movl $(SYS(x)), %eax; \
KERNCALL; \
jb 1b; \
ret; \
END(x)
/*
* Initial asm stuff for all functions.
*/
.text
.align 2
/* ==========================================================================
* error code for all syscalls. The error value is returned as the negative
* of the errno value.
*/
1:
neg %eax
ret
#define XSYSCALL(NAME) SYSCALL(NAME)
XSYSCALL(SYSCALL_NAME)
|