svn commit: r350318 - head/include

Rick Macklem rmacklem at FreeBSD.org
Thu Jul 25 06:10:45 UTC 2019


Author: rmacklem
Date: Thu Jul 25 06:10:44 2019
New Revision: 350318
URL: https://svnweb.freebsd.org/changeset/base/350318

Log:
  Add an entry for copy_file_range(2) to unistd.h.
  
  copy_file_range(2) is a Linux compatible syscall created by r350315.
  
  Reviewed by:	kib, asomers
  Relnotes:	yes
  Differential Revision:	https://reviews.freebsd.org/D20584

Modified:
  head/include/unistd.h

Modified: head/include/unistd.h
==============================================================================
--- head/include/unistd.h	Thu Jul 25 06:05:49 2019	(r350317)
+++ head/include/unistd.h	Thu Jul 25 06:10:44 2019	(r350318)
@@ -494,6 +494,7 @@ struct crypt_data {
 int	 acct(const char *);
 int	 async_daemon(void);
 int	 check_utility_compat(const char *);
+ssize_t	 copy_file_range(int, off_t *, int, off_t *, size_t, unsigned int);
 const char *
 	 crypt_get_format(void);
 char	*crypt_r(const char *, const char *, struct crypt_data *);


More information about the svn-src-all mailing list