1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     os.h
4 
5   Copyright (C)2009 Nintendo Co., Ltd.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Rev: 28736 $
14  *---------------------------------------------------------------------------*/
15 
16 /*! @file
17     @brief    オペレーティングシステム に関する API の宣言
18 
19     :include nn/os.h
20 */
21 
22 #ifndef NN_OS_H_
23 #define NN_OS_H_
24 
25 /*! @namespace  nn::os
26     @brief      オペレーティングシステム API の名前空間
27 */
28 
29 /*! @namespace  nn::os::ARM
30     @brief      ARM プロセッサ固有の API の名前空間
31                 ("::ARM" は省略することができます)
32 */
33 
34 /*! @namespace  nn::os::CTR
35     @brief      CTR プラットフォーム固有の API の名前空間
36                 ("::CTR" は省略することができます)
37 */
38 
39 #ifdef __cplusplus
40     #include <nn/os/os_SvcTypes.autogen.h>
41 #endif
42 
43 #include <nn/os/os_Alarm.h>
44 #include <nn/os/os_BlockingQueue.h>
45 #include <nn/os/os_CriticalSection.h>
46 #include <nn/os/os_Default.h>
47 #include <nn/os/os_ExceptionHandlerSelect.h>
48 #include <nn/os/os_HandleObject.h>
49 #include <nn/os/os_Initialize.h>
50 #include <nn/os/os_InterCoreCriticalSection.h>
51 #include <nn/os/os_LightBarrier.h>
52 #include <nn/os/os_LightEvent.h>
53 #include <nn/os/os_LightSemaphore.h>
54 #include <nn/os/os_LockPolicy.h>
55 #include <nn/os/os_Memory.h>
56 #include <nn/os/os_MemoryBarrierSelect.h>
57 #include <nn/os/os_MemoryBlock.h>
58 #include <nn/os/os_MemoryBlockBase.h>
59 #include <nn/os/os_MemoryTypes.h>
60 #include <nn/os/os_Result.h>
61 #include <nn/os/os_SharedMemory.h>
62 #include <nn/os/os_SpinWaitSelect.h>
63 #include <nn/os/os_StackMemory.h>
64 #include <nn/os/os_StackMemoryBlock.h>
65 #include <nn/os/os_Synchronization.h>
66 #include <nn/os/os_Thread.h>
67 #include <nn/os/os_ThreadLocalStorage.h>
68 #include <nn/os/os_ThreadPool.h>
69 #include <nn/os/os_Tick.h>
70 #include <nn/os/os_TransferMemoryBlock.h>
71 #include <nn/os/os_Types.h>
72 #include <nn/os/os_WaitableCounter.h>
73 #include <nn/os/os_EnvironmentSelect.h>
74 
75 /*!
76   @defgroup     nn_os       os
77   @brief        オペレーティングシステムを制御する為のモジュールです
78   @{
79 */
80 
81 
82 /*!
83   @}
84 */
85 
86 #include <nn/os/os_Event.h>
87 #include <nn/os/os_Mutex.h>
88 #include <nn/os/os_Semaphore.h>
89 
90 
91 #endif /* NN_OS_H_ */
92