2014-05-13 00:41:46 +08:00
|
|
|
/*
|
2023-02-27 04:16:18 +08:00
|
|
|
ISC License
|
|
|
|
|
|
|
|
Copyright (c) 2023, Antonio SJ Musumeci <trapexit@spawn.link>
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2014-05-13 00:41:46 +08:00
|
|
|
*/
|
|
|
|
|
2017-06-30 23:15:20 +08:00
|
|
|
#pragma once
|
2016-12-23 11:46:20 +08:00
|
|
|
|
2023-02-27 04:16:18 +08:00
|
|
|
#include <unistd.h>
|
2020-12-20 04:06:08 +08:00
|
|
|
|
2023-02-27 04:16:18 +08:00
|
|
|
namespace fs
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2023-02-27 04:16:18 +08:00
|
|
|
static
|
2019-01-25 20:03:46 +08:00
|
|
|
int
|
2023-02-27 04:16:18 +08:00
|
|
|
pread(const int fd_,
|
|
|
|
void *buf_,
|
|
|
|
const size_t count_,
|
|
|
|
const off_t offset_)
|
|
|
|
{
|
|
|
|
int rv;
|
2021-08-25 09:24:51 +08:00
|
|
|
|
2023-02-27 04:16:18 +08:00
|
|
|
rv = ::pread(fd_,buf_,count_,offset_);
|
|
|
|
|
|
|
|
return ((rv == -1) ? -errno : rv);
|
|
|
|
}
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|