unix/PidFile: add "noexcept"
This commit is contained in:
parent
dfda0faac7
commit
2a2c5d50ff
|
@ -48,14 +48,14 @@ public:
|
|||
|
||||
PidFile(const PidFile &) = delete;
|
||||
|
||||
void Close() {
|
||||
void Close() noexcept {
|
||||
if (fd < 0)
|
||||
return;
|
||||
|
||||
close(fd);
|
||||
}
|
||||
|
||||
void Delete(const AllocatedPath &path) {
|
||||
void Delete(const AllocatedPath &path) noexcept {
|
||||
if (fd < 0) {
|
||||
assert(path.IsNull());
|
||||
return;
|
||||
|
@ -67,7 +67,7 @@ public:
|
|||
unlink(path.c_str());
|
||||
}
|
||||
|
||||
void Write(pid_t pid) {
|
||||
void Write(pid_t pid) noexcept {
|
||||
if (fd < 0)
|
||||
return;
|
||||
|
||||
|
@ -78,7 +78,7 @@ public:
|
|||
close(fd);
|
||||
}
|
||||
|
||||
void Write() {
|
||||
void Write() noexcept {
|
||||
if (fd < 0)
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue