mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibCore: Make all processes opt out of InspectorServer by default
This functionality, while neat, isn't really something you need enabled all the time. Let's make it opt-in instead. Pass MakeInspectable::Yes to the Core::EventLoop constructor if you want your program to become inspectable.
This commit is contained in:
parent
76a07b31e4
commit
c9e849a968
Notes:
sideshowbarker
2024-07-18 17:31:33 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/c9e849a9681
@ -26,7 +26,7 @@ public:
|
||||
Yes,
|
||||
};
|
||||
|
||||
EventLoop(MakeInspectable = MakeInspectable::Yes);
|
||||
explicit EventLoop(MakeInspectable = MakeInspectable::No);
|
||||
~EventLoop();
|
||||
|
||||
int exec();
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
Core::EventLoop event_loop(Core::EventLoop::MakeInspectable::No);
|
||||
Core::EventLoop event_loop;
|
||||
auto server = Core::LocalServer::construct();
|
||||
|
||||
if (pledge("stdio unix accept", nullptr) < 0) {
|
||||
|
@ -27,8 +27,7 @@
|
||||
namespace WindowServer {
|
||||
|
||||
EventLoop::EventLoop()
|
||||
: m_event_loop(Core::EventLoop::MakeInspectable::No)
|
||||
, m_window_server(Core::LocalServer::construct())
|
||||
: m_window_server(Core::LocalServer::construct())
|
||||
, m_wm_server(Core::LocalServer::construct())
|
||||
{
|
||||
m_keyboard_fd = open("/dev/keyboard0", O_RDONLY | O_NONBLOCK | O_CLOEXEC);
|
||||
|
@ -27,7 +27,7 @@ int main(int argc, char** argv)
|
||||
pid_t pid = 0;
|
||||
args_parser.add_positional_argument(pid, "PID", "pid");
|
||||
args_parser.parse(argc, argv);
|
||||
Core::EventLoop loop(Core::EventLoop::MakeInspectable::No);
|
||||
Core::EventLoop loop;
|
||||
|
||||
Core::DirIterator iterator(String::formatted("/proc/{}/stacks", pid), Core::DirIterator::SkipDots);
|
||||
if (iterator.has_error()) {
|
||||
|
Loading…
Reference in New Issue
Block a user