Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2019 06:10:44 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r350318 - head/include
Message-ID:  <201907250610.x6P6AiNe089766@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 *);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907250610.x6P6AiNe089766>