mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 20:17:41 +00:00
Kernel: Remove unused WorkQueue::m_name.
This commit is contained in:
parent
51ad3da999
commit
ff0d4c6f7c
2 changed files with 0 additions and 2 deletions
|
@ -39,7 +39,6 @@ void WorkQueue::initialize()
|
||||||
}
|
}
|
||||||
|
|
||||||
WorkQueue::WorkQueue(const char* name)
|
WorkQueue::WorkQueue(const char* name)
|
||||||
: m_name(name)
|
|
||||||
{
|
{
|
||||||
RefPtr<Thread> thread;
|
RefPtr<Thread> thread;
|
||||||
Process::create_kernel_process(thread, name, [this] {
|
Process::create_kernel_process(thread, name, [this] {
|
||||||
|
|
|
@ -84,7 +84,6 @@ private:
|
||||||
|
|
||||||
void do_queue(WorkItem*);
|
void do_queue(WorkItem*);
|
||||||
|
|
||||||
const char* const m_name;
|
|
||||||
RefPtr<Thread> m_thread;
|
RefPtr<Thread> m_thread;
|
||||||
WaitQueue m_wait_queue;
|
WaitQueue m_wait_queue;
|
||||||
IntrusiveList<WorkItem, &WorkItem::m_node> m_items;
|
IntrusiveList<WorkItem, &WorkItem::m_node> m_items;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue