diff options
| author | Mark Johnston <markjdb@gmail.com> | 2020-03-26 14:53:46 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-03-27 05:51:58 +0100 |
| commit | f2e4c4ea821f1f6814423cc7c67f77e7d12e7691 (patch) | |
| tree | 8ee6ea5f63fbe141d36b84405e3403fd5617c0db /executor | |
| parent | 0645e7c7e9d4962b64e28fde9a86b428296854bd (diff) | |
sys/freebsd: add posix_fadvise(2) and posix_fallocate(2)
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/defs.h | 4 | ||||
| -rw-r--r-- | executor/syscalls.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/executor/defs.h b/executor/defs.h index 648948664..cf3563c10 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -20,7 +20,7 @@ #if GOARCH_386 #define GOARCH "386" -#define SYZ_REVISION "55084199fb3df403fce43c2d2a214d5c4737485a" +#define SYZ_REVISION "ce7560b0a32eb01017cb21cee645788bf75a7ed9" #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 "2eac7eb52a6f14fbda41ca51d881aaddb9a442d4" +#define SYZ_REVISION "649ca6e7f658089a75150592b5117517423f96be" #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 aa3f54183..29e8ec8f0 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -521,6 +521,8 @@ const call_t syscalls[] = { {"openat$ptmx", 499}, {"pipe2", 542}, {"poll", 209}, + {"posix_fadvise", 531}, + {"posix_fallocate", 530}, {"ppoll", 545}, {"preadv", 289}, {"pwritev", 290}, @@ -1031,6 +1033,8 @@ const call_t syscalls[] = { {"openat$ptmx", 499}, {"pipe2", 542}, {"poll", 209}, + {"posix_fadvise", 531}, + {"posix_fallocate", 530}, {"ppoll", 545}, {"preadv", 289}, {"pwritev", 290}, |
