1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

Kernel/TTY: Remove redundant SpinLock from VirtualConsole

VirtualConsole::m_lock was only used in a single place: on_tty_write()
That function is already protected by a global lock, so this second
lock served no purpose whatsoever.
This commit is contained in:
Andreas Kling 2021-08-07 12:36:21 +02:00
parent b5b67a1747
commit 58fb38551c
Notes: sideshowbarker 2024-07-18 07:19:46 +09:00
2 changed files with 1 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
@ -118,7 +118,6 @@ private:
bool m_graphical { false };
String m_tty_name;
RecursiveSpinLock m_lock;
private:
void initialize();