mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-30 22:54:35 +03:00
Kernel: Remove unused WorkQueue::m_name.
This commit is contained in:
parent
51ad3da999
commit
ff0d4c6f7c
Notes:
sideshowbarker
2024-07-18 21:04:19 +09:00
Author: https://github.com/mhermier Commit: https://github.com/SerenityOS/serenity/commit/ff0d4c6f7c5 Pull-request: https://github.com/SerenityOS/serenity/pull/5946
@ -39,7 +39,6 @@ void WorkQueue::initialize()
|
||||
}
|
||||
|
||||
WorkQueue::WorkQueue(const char* name)
|
||||
: m_name(name)
|
||||
{
|
||||
RefPtr<Thread> thread;
|
||||
Process::create_kernel_process(thread, name, [this] {
|
||||
|
@ -84,7 +84,6 @@ private:
|
||||
|
||||
void do_queue(WorkItem*);
|
||||
|
||||
const char* const m_name;
|
||||
RefPtr<Thread> m_thread;
|
||||
WaitQueue m_wait_queue;
|
||||
IntrusiveList<WorkItem, &WorkItem::m_node> m_items;
|
||||
|
Loading…
Reference in New Issue
Block a user