mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:07:34 +00:00
Kernel: Resolve clang-tidy readability-implicit-bool-conversion warnings
... In files included from Kernel/Process.cpp and Kernel/Thread.cpp
This commit is contained in:
parent
6f580f2047
commit
a92132e44a
17 changed files with 85 additions and 84 deletions
|
@ -714,7 +714,7 @@ public:
|
|||
virtual bool setup_blocker() override;
|
||||
|
||||
bool unblock(Process& process, UnblockFlags flags, u8 signal, bool from_add_blocker);
|
||||
bool is_wait() const { return !(m_wait_options & WNOWAIT); }
|
||||
bool is_wait() const { return (m_wait_options & WNOWAIT) != WNOWAIT; }
|
||||
|
||||
private:
|
||||
void do_was_disowned();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue