From f2e4c4ea821f1f6814423cc7c67f77e7d12e7691 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Thu, 26 Mar 2020 14:53:46 -0400 Subject: sys/freebsd: add posix_fadvise(2) and posix_fallocate(2) --- executor/syscalls.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'executor/syscalls.h') 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}, -- cgit mrf-deployment