-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from yomaytk/release
Organize the process of system calls emulation.
- Loading branch information
Showing
13 changed files
with
727 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,4 +110,8 @@ obj-intel64/* | |
VERSION | ||
|
||
examples/w2c | ||
examples/tests | ||
examples/tests | ||
|
||
# release | ||
SHA* | ||
elfconv-v* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#pragma once | ||
|
||
#define _ECV_EACCESS 13 | ||
#define _ECV_ENOSYS 38 | ||
/* | ||
syscall number table | ||
*/ | ||
#define AARCH64_SYS_IOCTL 29 | ||
#define AARCH64_SYS_FACCESSAT 48 | ||
#define AARCH64_SYS_OPENAT 56 | ||
#define AARCH64_SYS_CLOSE 57 | ||
#define AARCH64_SYS_READ 63 | ||
#define AARCH64_SYS_WRITE 64 | ||
#define AARCH64_SYS_WRITEV 66 | ||
#define AARCH64_SYS_READLINKAT 78 | ||
#define AARCH64_SYS_NEWFSTATAT 79 | ||
#define AARCH64_SYS_EXIT 93 | ||
#define AARCH64_SYS_EXITGROUP 94 | ||
#define AARCH64_SYS_SET_TID_ADDRESS 96 | ||
#define AARCH64_SYS_FUTEX 98 | ||
#define AARCH64_SYS_SET_ROBUST_LIST 99 | ||
#define AARCH64_SYS_CLOCK_GETTIME 113 | ||
#define AARCH64_SYS_TGKILL 131 | ||
#define AARCH64_SYS_RT_SIGACTION 134 | ||
#define AARCH64_SYS_RT_SIGPROCMASK 135 | ||
#define AARCH64_SYS_UNAME 160 | ||
#define AARCH64_SYS_GETPID 172 | ||
#define AARCH64_SYS_GETPPID 173 | ||
#define AARCH64_SYS_GETTUID 174 | ||
#define AARCH64_SYS_GETEUID 175 | ||
#define AARCH64_SYS_GETGID 176 | ||
#define AARCH64_SYS_GETEGID 177 | ||
#define AARCH64_SYS_GETTID 178 | ||
#define AARCH64_SYS_BRK 214 | ||
#define AARCH64_SYS_MUNMAP 215 | ||
#define AARCH64_SYS_MMAP 222 | ||
#define AARCH64_SYS_MPROTECT 226 | ||
#define AARCH64_SYS_PRLIMIT64 261 | ||
#define AARCH64_SYS_GETRANDOM 278 | ||
#define AARCH64_SYS_STATX 291 | ||
#define AARCH64_SYS_RSEQ 293 |
Oops, something went wrong.