2 * <sys/sendfile.h> wrapper functions.
5 * Jonathan Pryor (jonpryor@vt.edu)
7 * Copyright (C) 2004 Jonathan Pryor
12 #include <sys/types.h>
15 #include "mono/utils/mono-compiler.h"
19 #ifdef HAVE_SYS_SENDFILE_H
20 #include <sys/sendfile.h>
21 #endif /* ndef HAVE_SYS_SENDFILE_H */
27 Mono_Posix_Syscall_sendfile (int out_fd
, int in_fd
, mph_off_t
*offset
, mph_size_t count
)
31 mph_return_if_off_t_overflow (*offset
);
35 #if defined(HOST_DARWIN) || defined(HOST_BSD)
36 /* The BSD version has 6 arguments */
37 g_assert_not_reached ();
39 r
= sendfile (out_fd
, in_fd
, &_offset
, (size_t) count
);
46 #endif /* ndef HAVE_SENDFILE */