From a3a9e86ddbed0a2ca55dc9a9d854c72930150fe6 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Wed, 14 Oct 2015 14:06:04 -0400 Subject: [PATCH] Port: Add Solaris support to fcntl compat MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- src/common/compat/fcntl.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/compat/fcntl.h b/src/common/compat/fcntl.h index 04fe03ab4..8aad6cd72 100644 --- a/src/common/compat/fcntl.h +++ b/src/common/compat/fcntl.h @@ -26,7 +26,7 @@ typedef long long off64_t; #endif -#ifdef __FreeBSD__ +#if (defined(__FreeBSD__) || defined(__sun__)) typedef off64_t loff_t; #endif @@ -38,7 +38,7 @@ extern int compat_sync_file_range(int fd, off64_t offset, off64_t nbytes, #endif /* __linux__ */ -#if (defined(__FreeBSD__) || defined(__CYGWIN__)) +#if (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__)) /* * Possible flags under Linux. Simply nullify them and avoid wrapper. */ @@ -53,7 +53,7 @@ static inline int lttng_sync_file_range(int fd, off64_t offset, } #endif -#if (defined(__FreeBSD__) || defined(__CYGWIN__)) +#if (defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__)) /* * Possible flags under Linux. Simply nullify them and avoid wrappers. */ @@ -78,8 +78,8 @@ static inline int posix_fadvise(int fd, off_t offset, off_t len, int advice) } #endif -#if !(defined(__linux__) || defined(__FreeBSD__) || defined(__CYGWIN__)) +#if !(defined(__linux__) || defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__sun__)) #error "Please add support for your OS." -#endif /* __linux__ , __FreeBSD__, __CYGWIN__ */ +#endif /* __linux__ , __FreeBSD__, __CYGWIN__, __sun__ */ #endif /* _COMPAT_FCNTL_H */ -- 2.34.1