Last change
on this file since 546 was
444,
checked in by satin@…, 6 years ago
|
add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc
|
File size:
1.2 KB
|
Line | |
---|
1 | /* linux-syscalls - Syscall interface to microblaze linux |
---|
2 | * |
---|
3 | * Copyright (c) 2011 Edgar E. Iglesias |
---|
4 | * |
---|
5 | * The authors hereby grant permission to use, copy, modify, distribute, |
---|
6 | * and license this software and its documentation for any purpose, provided |
---|
7 | * that existing copyright notices are retained in all copies and that this |
---|
8 | * notice is included verbatim in any distributions. No written agreement, |
---|
9 | * license, or royalty fee is required for any of the authorized uses. |
---|
10 | * Modifications to this software may be copyrighted by their authors |
---|
11 | * and need not follow the licensing terms described here, provided that |
---|
12 | * the new terms are clearly indicated on the first page of each file where |
---|
13 | * they apply. |
---|
14 | */ |
---|
15 | |
---|
16 | #include "linux-syscalls.h" |
---|
17 | |
---|
18 | #define FUNC(name) .type name, %function; name: |
---|
19 | |
---|
20 | #define GLOBAL(name) .global name; FUNC(name) |
---|
21 | #define SIZE(name) .size name, .-name |
---|
22 | |
---|
23 | # define SYSCALL_BODY(name) \ |
---|
24 | addik r12, r0, SYS_ ## name; \ |
---|
25 | brki r14, 8; \ |
---|
26 | rtsd r15, 8; \ |
---|
27 | nop; |
---|
28 | |
---|
29 | # define SYSCALL(name) \ |
---|
30 | GLOBAL(_ ## name); \ |
---|
31 | SYSCALL_BODY(name); \ |
---|
32 | SIZE(_ ## name) |
---|
33 | |
---|
34 | SYSCALL(brk) |
---|
35 | SYSCALL(exit) |
---|
36 | SYSCALL(read) |
---|
37 | SYSCALL(write) |
---|
38 | SYSCALL(open) |
---|
39 | SYSCALL(close) |
---|
40 | SYSCALL(lseek) |
---|
41 | SYSCALL(fstat) |
---|
42 | SYSCALL(unlink) |
---|
43 | SYSCALL(getpid) |
---|
44 | SYSCALL(kill) |
---|
45 | SYSCALL(rt_sigaction) |
---|
Note: See
TracBrowser
for help on using the repository browser.