:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_lib_spinlock.hpp: Program Listing for File spinlock.hpp ===================================== |exhale_lsh| :ref:`Return to documentation for file ` (``lib/spinlock.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Gaia { class Spinlock { public: void lock() { _lock.lock(); } void unlock() { _lock.unlock(); } private: frg::simple_spinlock _lock; }; } // namespace Gaia