2019-12-09 11:57:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "os/os_common_types.hpp"
|
|
|
|
#include "os/os_memory_common.hpp"
|
|
|
|
#include "os/os_managed_handle.hpp"
|
|
|
|
#include "os/os_process_handle.hpp"
|
2019-12-10 07:50:47 +00:00
|
|
|
#include "os/os_random.hpp"
|
2019-12-09 11:57:37 +00:00
|
|
|
#include "os/os_mutex.hpp"
|
|
|
|
#include "os/os_condvar.hpp"
|
|
|
|
#include "os/os_rw_lock.hpp"
|
|
|
|
#include "os/os_semaphore.hpp"
|
|
|
|
#include "os/os_timeout_helper.hpp"
|
|
|
|
#include "os/os_event.hpp"
|
|
|
|
#include "os/os_system_event.hpp"
|
|
|
|
#include "os/os_interrupt_event.hpp"
|
|
|
|
#include "os/os_thread.hpp"
|
|
|
|
#include "os/os_message_queue.hpp"
|
|
|
|
#include "os/os_waitable_holder.hpp"
|
|
|
|
#include "os/os_waitable_manager.hpp"
|