Kernel: Remove unused WorkQueue::m_name.

This commit is contained in:
Michel Hermier 2021-03-25 11:19:22 +01:00 committed by Andreas Kling
parent 51ad3da999
commit ff0d4c6f7c
Notes: sideshowbarker 2024-07-18 21:04:19 +09:00
2 changed files with 0 additions and 2 deletions

View File

@ -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] {

View File

@ -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;