mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 14:55:44 -04:00
34 lines
764 B
C++
34 lines
764 B
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "UniquePtrExtensions.h"
|
|
|
|
#include "mozilla/Assertions.h"
|
|
#include "mozilla/DebugOnly.h"
|
|
|
|
#ifdef XP_WIN
|
|
# include <windows.h>
|
|
#else
|
|
# include <errno.h>
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
namespace detail {
|
|
|
|
void FileHandleDeleter::operator()(FileHandleHelper aHelper) {
|
|
if (aHelper != nullptr) {
|
|
DebugOnly<bool> ok;
|
|
#ifdef XP_WIN
|
|
ok = CloseHandle(aHelper);
|
|
#else
|
|
ok = close(aHelper) == 0 || errno == EINTR;
|
|
#endif
|
|
MOZ_ASSERT(ok, "failed to close file handle");
|
|
}
|
|
}
|
|
|
|
} // namespace detail
|
|
} // namespace mozilla
|