mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 23:22:07 +00:00
Kernel: Make Thread::state_string() return StringView
This commit is contained in:
parent
af46f2214c
commit
32a150f2b4
4 changed files with 23 additions and 23 deletions
|
@ -89,7 +89,7 @@ private:
|
|||
{
|
||||
set_block_condition(fs.m_completion_blocker);
|
||||
}
|
||||
virtual const char* state_string() const override { return "Waiting"; }
|
||||
virtual StringView state_string() const override { return "Waiting"sv; }
|
||||
virtual Type blocker_type() const override { return Type::Plan9FS; }
|
||||
virtual void not_blocking(bool) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue