diff options
| author | Mark Johnston <markjdb@gmail.com> | 2020-03-26 15:25:42 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-03-27 05:51:58 +0100 |
| commit | be07a9be5eba71b93c2089f5cf133a235b18fa21 (patch) | |
| tree | 8deadfe4742e3c17c9536b5487f77d0c83338c8b /executor | |
| parent | 87abd520f8d5796334f10c62e1ae1af621284694 (diff) | |
sys/freebsd: add __realpathat system call
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/defs.h | 4 | ||||
| -rw-r--r-- | executor/syscalls.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/executor/defs.h b/executor/defs.h index 3e0d74f6f..7862b7678 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -20,7 +20,7 @@ #if GOARCH_386 #define GOARCH "386" -#define SYZ_REVISION "9153d8fbbe6b117424690a313cf2b7a3a1f02c34" +#define SYZ_REVISION "27b0c289c0d78fe767ad2fbe062383e89cef0180" #define SYZ_EXECUTOR_USES_FORK_SERVER 1 #define SYZ_EXECUTOR_USES_SHMEM 1 #define SYZ_PAGE_SIZE 4096 @@ -30,7 +30,7 @@ #if GOARCH_amd64 #define GOARCH "amd64" -#define SYZ_REVISION "b3574571fbfa175bbf91c857af8d5e6db2d92ccf" +#define SYZ_REVISION "5d7c29fe9b21a5007b1d3b4f13d51931ecd5d703" #define SYZ_EXECUTOR_USES_FORK_SERVER 1 #define SYZ_EXECUTOR_USES_SHMEM 1 #define SYZ_PAGE_SIZE 4096 diff --git a/executor/syscalls.h b/executor/syscalls.h index ced2bbee3..667816ae2 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -227,6 +227,7 @@ const call_t syscalls[] = { #if GOARCH_386 const call_t syscalls[] = { {"__getcwd", 326}, + {"__realpathat", 574}, {"__semctl$GETALL", 510}, {"__semctl$GETNCNT", 510}, {"__semctl$GETPID", 510}, @@ -747,6 +748,7 @@ const call_t syscalls[] = { #if GOARCH_amd64 const call_t syscalls[] = { {"__getcwd", 326}, + {"__realpathat", 574}, {"__semctl$GETALL", 510}, {"__semctl$GETNCNT", 510}, {"__semctl$GETPID", 510}, |
