Blame support/xcopy_file_range.c

Packit Bot 3f3af5
/* copy_file_range with error checking.
Packit Bot 3f3af5
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Bot 3f3af5
   This file is part of the GNU C Library.
Packit Bot 3f3af5
Packit Bot 3f3af5
   The GNU C Library is free software; you can redistribute it and/or
Packit Bot 3f3af5
   modify it under the terms of the GNU Lesser General Public
Packit Bot 3f3af5
   License as published by the Free Software Foundation; either
Packit Bot 3f3af5
   version 2.1 of the License, or (at your option) any later version.
Packit Bot 3f3af5
Packit Bot 3f3af5
   The GNU C Library is distributed in the hope that it will be useful,
Packit Bot 3f3af5
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Bot 3f3af5
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Bot 3f3af5
   Lesser General Public License for more details.
Packit Bot 3f3af5
Packit Bot 3f3af5
   You should have received a copy of the GNU Lesser General Public
Packit Bot 3f3af5
   License along with the GNU C Library; if not, see
Packit Bot 3f3af5
   <http://www.gnu.org/licenses/>.  */
Packit Bot 3f3af5
Packit Bot 3f3af5
#include <support/support.h>
Packit Bot 3f3af5
#include <support/xunistd.h>
Packit Bot 3f3af5
#include <support/check.h>
Packit Bot 3f3af5
Packit Bot 3f3af5
ssize_t
Packit Bot 3f3af5
xcopy_file_range (int infd, off64_t *pinoff, int outfd, off64_t *poutoff,
Packit Bot 3f3af5
		  size_t length, unsigned int flags)
Packit Bot 3f3af5
{
Packit Bot 3f3af5
  ssize_t status = support_copy_file_range (infd, pinoff, outfd,
Packit Bot 3f3af5
					    poutoff, length, flags);
Packit Bot 3f3af5
  if (status == -1)
Packit Bot 3f3af5
    FAIL_EXIT1 ("cannot copy file: %m\n");
Packit Bot 3f3af5
  return status;
Packit Bot 3f3af5
}