aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/file.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/system/file.cpp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/file.cpp')
-rw-r--r--util/system/file.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/system/file.cpp b/util/system/file.cpp
index 0ba1a89062..4a261d020c 100644
--- a/util/system/file.cpp
+++ b/util/system/file.cpp
@@ -274,8 +274,8 @@ bool TFileHandle::Close() noexcept {
isOk = (::CloseHandle(Fd_) != 0);
}
if (!isOk) {
- Y_VERIFY(GetLastError() != ERROR_INVALID_HANDLE,
- "must not quietly close invalid handle");
+ Y_VERIFY(GetLastError() != ERROR_INVALID_HANDLE,
+ "must not quietly close invalid handle");
}
#elif defined(_unix_)
if (Fd_ != INVALID_FHANDLE) {
@@ -285,7 +285,7 @@ bool TFileHandle::Close() noexcept {
// Do not quietly close bad descriptor,
// because often it means double close
// that is disasterous
- Y_VERIFY(errno != EBADF, "must not quietly close bad descriptor: fd=%d", int(Fd_));
+ Y_VERIFY(errno != EBADF, "must not quietly close bad descriptor: fd=%d", int(Fd_));
}
#else
#error unsupported platform
@@ -1288,15 +1288,15 @@ bool PosixDisableReadAhead(FHANDLE fileHandle, void* addr) noexcept {
#if HAVE_POSIX_FADVISE
#if defined(_linux_)
- Y_UNUSED(fileHandle);
+ Y_UNUSED(fileHandle);
ret = madvise(addr, 0, MADV_RANDOM); // according to klamm@ posix_fadvise does not work under linux, madvise does work
#else
- Y_UNUSED(addr);
+ Y_UNUSED(addr);
ret = ::posix_fadvise(fileHandle, 0, 0, POSIX_FADV_RANDOM);
#endif
#else
- Y_UNUSED(fileHandle);
- Y_UNUSED(addr);
+ Y_UNUSED(fileHandle);
+ Y_UNUSED(addr);
#endif
return ret == 0;
}