diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-22 18:47:42 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-22 18:54:22 +0200 |
commit | b5d73c834ff0f4cb1ff6112f055bee4cd02b21ec (patch) | |
tree | 82aae5e6a9d2d798b9810770b15f2a9d3cb04161 /Userland/DevTools/HackStudio | |
parent | 5729b4e9a5658d8728239e3141ff270004af5d6c (diff) | |
download | serenity-b5d73c834ff0f4cb1ff6112f055bee4cd02b21ec.zip |
Userland: Rename LibThread => LibThreading
Also rename the "LibThread" namespace to "Threading"
Diffstat (limited to 'Userland/DevTools/HackStudio')
-rw-r--r-- | Userland/DevTools/HackStudio/Debugger/Debugger.h | 4 | ||||
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.cpp | 6 | ||||
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.h | 4 | ||||
-rw-r--r-- | Userland/DevTools/HackStudio/main.cpp | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/Userland/DevTools/HackStudio/Debugger/Debugger.h b/Userland/DevTools/HackStudio/Debugger/Debugger.h index 579f5574e6..f485c5c4f5 100644 --- a/Userland/DevTools/HackStudio/Debugger/Debugger.h +++ b/Userland/DevTools/HackStudio/Debugger/Debugger.h @@ -11,8 +11,8 @@ #include <AK/LexicalPath.h> #include <AK/Vector.h> #include <LibDebug/DebugSession.h> -#include <LibThread/Lock.h> -#include <LibThread/Thread.h> +#include <LibThreading/Lock.h> +#include <LibThreading/Thread.h> namespace HackStudio { diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index f8e6c04a63..8abd23e15b 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -60,8 +60,8 @@ #include <LibGUI/Window.h> #include <LibGfx/FontDatabase.h> #include <LibGfx/Palette.h> -#include <LibThread/Lock.h> -#include <LibThread/Thread.h> +#include <LibThreading/Lock.h> +#include <LibThreading/Thread.h> #include <LibVT/TerminalWidget.h> #include <fcntl.h> #include <spawn.h> @@ -621,7 +621,7 @@ NonnullRefPtr<GUI::Action> HackStudioWidget::create_debug_action() } Debugger::the().set_executable_path(get_project_executable_path()); - m_debugger_thread = LibThread::Thread::construct(Debugger::start_static); + m_debugger_thread = Threading::Thread::construct(Debugger::start_static); m_debugger_thread->start(); m_stop_action->set_enabled(true); }); diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.h b/Userland/DevTools/HackStudio/HackStudioWidget.h index b352ef202c..1dd385f54f 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.h +++ b/Userland/DevTools/HackStudio/HackStudioWidget.h @@ -23,7 +23,7 @@ #include <LibGUI/Scrollbar.h> #include <LibGUI/Splitter.h> #include <LibGUI/Widget.h> -#include <LibThread/Thread.h> +#include <LibThreading/Thread.h> namespace HackStudio { @@ -144,7 +144,7 @@ private: RefPtr<FindInFilesWidget> m_find_in_files_widget; RefPtr<DebugInfoWidget> m_debug_info_widget; RefPtr<DisassemblyWidget> m_disassembly_widget; - RefPtr<LibThread::Thread> m_debugger_thread; + RefPtr<Threading::Thread> m_debugger_thread; RefPtr<EditorWrapper> m_current_editor_in_execution; RefPtr<GUI::Action> m_new_file_action; diff --git a/Userland/DevTools/HackStudio/main.cpp b/Userland/DevTools/HackStudio/main.cpp index b54d82e207..436b1122a1 100644 --- a/Userland/DevTools/HackStudio/main.cpp +++ b/Userland/DevTools/HackStudio/main.cpp @@ -19,8 +19,8 @@ #include <LibGUI/Notification.h> #include <LibGUI/Widget.h> #include <LibGUI/Window.h> -#include <LibThread/Lock.h> -#include <LibThread/Thread.h> +#include <LibThreading/Lock.h> +#include <LibThreading/Thread.h> #include <LibVT/TerminalWidget.h> #include <fcntl.h> #include <spawn.h> |