/* * Copyright (c) 2025, Andrew Kaster * * SPDX-License-Identifier: BSD-2-Clause */ #include "TestEventLoop.h" #include #include void install_thread_local_event_loop() { thread_local OwnPtr s_thread_local_event_loop = nullptr; if (!s_thread_local_event_loop) s_thread_local_event_loop = make(); }