diff options
| author | Mark Johnston <markjdb@gmail.com> | 2020-03-26 14:59:17 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-03-27 05:51:58 +0100 |
| commit | ed2c77ae5935789c2f5ecc6000e300ab78deef68 (patch) | |
| tree | 2b5c7e98175482a39798a8bbd9f7695996f0d324 /executor | |
| parent | f2e4c4ea821f1f6814423cc7c67f77e7d12e7691 (diff) | |
sys/freebsd: add connectat(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 cf3563c10..4069e573c 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -20,7 +20,7 @@ #if GOARCH_386 #define GOARCH "386" -#define SYZ_REVISION "ce7560b0a32eb01017cb21cee645788bf75a7ed9" +#define SYZ_REVISION "9aa913dd00fd9a77ce8244e6e146d09fdad95e8f" #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 "649ca6e7f658089a75150592b5117517423f96be" +#define SYZ_REVISION "d6baa2c780ceca787d2bfc2b770607581ff9e055" #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 29e8ec8f0..e58566d53 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -267,6 +267,8 @@ const call_t syscalls[] = { {"connect$inet", 98}, {"connect$inet6", 98}, {"connect$unix", 98}, + {"connectat", 539}, + {"connectat$unix", 539}, {"copy_file_range", 569}, {"dup", 41}, {"dup2", 90}, @@ -779,6 +781,8 @@ const call_t syscalls[] = { {"connect$inet", 98}, {"connect$inet6", 98}, {"connect$unix", 98}, + {"connectat", 539}, + {"connectat$unix", 539}, {"copy_file_range", 569}, {"dup", 41}, {"dup2", 90}, |
