
Ok
Dependencies: mbed_rtos_types Mutex mbed_rtos_storage mbed Semaphore
rtos.h@0:85df64b421a8, 2019-11-27 (annotated)
- Committer:
- daniwestside
- Date:
- Wed Nov 27 11:12:33 2019 +0000
- Branch:
- Sinthreads
- Revision:
- 0:85df64b421a8
OK
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
daniwestside | 0:85df64b421a8 | 1 | |
daniwestside | 0:85df64b421a8 | 2 | /** \addtogroup rtos */ |
daniwestside | 0:85df64b421a8 | 3 | /** @{*/ |
daniwestside | 0:85df64b421a8 | 4 | /* mbed Microcontroller Library |
daniwestside | 0:85df64b421a8 | 5 | * Copyright (c) 2006-2012 ARM Limited |
daniwestside | 0:85df64b421a8 | 6 | * |
daniwestside | 0:85df64b421a8 | 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
daniwestside | 0:85df64b421a8 | 8 | * of this software and associated documentation files (the "Software"), to deal |
daniwestside | 0:85df64b421a8 | 9 | * in the Software without restriction, including without limitation the rights |
daniwestside | 0:85df64b421a8 | 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
daniwestside | 0:85df64b421a8 | 11 | * copies of the Software, and to permit persons to whom the Software is |
daniwestside | 0:85df64b421a8 | 12 | * furnished to do so, subject to the following conditions: |
daniwestside | 0:85df64b421a8 | 13 | * |
daniwestside | 0:85df64b421a8 | 14 | * The above copyright notice and this permission notice shall be included in |
daniwestside | 0:85df64b421a8 | 15 | * all copies or substantial portions of the Software. |
daniwestside | 0:85df64b421a8 | 16 | * |
daniwestside | 0:85df64b421a8 | 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
daniwestside | 0:85df64b421a8 | 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
daniwestside | 0:85df64b421a8 | 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
daniwestside | 0:85df64b421a8 | 20 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
daniwestside | 0:85df64b421a8 | 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
daniwestside | 0:85df64b421a8 | 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
daniwestside | 0:85df64b421a8 | 23 | * SOFTWARE. |
daniwestside | 0:85df64b421a8 | 24 | */ |
daniwestside | 0:85df64b421a8 | 25 | #ifndef RTOS_H |
daniwestside | 0:85df64b421a8 | 26 | #define RTOS_H |
daniwestside | 0:85df64b421a8 | 27 | |
daniwestside | 0:85df64b421a8 | 28 | #include "rtos/mbed_rtos_storage.h" |
daniwestside | 0:85df64b421a8 | 29 | #include "rtos/Kernel.h" |
daniwestside | 0:85df64b421a8 | 30 | #include "rtos/Thread.h" |
daniwestside | 0:85df64b421a8 | 31 | #include "rtos/ThisThread.h" |
daniwestside | 0:85df64b421a8 | 32 | #include "rtos/Mutex.h" |
daniwestside | 0:85df64b421a8 | 33 | #include "rtos/RtosTimer.h" |
daniwestside | 0:85df64b421a8 | 34 | #include "rtos/Semaphore.h" |
daniwestside | 0:85df64b421a8 | 35 | #include "rtos/Mail.h" |
daniwestside | 0:85df64b421a8 | 36 | #include "rtos/MemoryPool.h" |
daniwestside | 0:85df64b421a8 | 37 | #include "rtos/Queue.h" |
daniwestside | 0:85df64b421a8 | 38 | #include "rtos/EventFlags.h" |
daniwestside | 0:85df64b421a8 | 39 | #include "rtos/ConditionVariable.h" |
daniwestside | 0:85df64b421a8 | 40 | |
daniwestside | 0:85df64b421a8 | 41 | #ifndef MBED_NO_GLOBAL_USING_DIRECTIVE |
daniwestside | 0:85df64b421a8 | 42 | using namespace rtos; |
daniwestside | 0:85df64b421a8 | 43 | #endif |
daniwestside | 0:85df64b421a8 | 44 | |
daniwestside | 0:85df64b421a8 | 45 | #include "platform/mbed_version.h" |
daniwestside | 0:85df64b421a8 | 46 | |
daniwestside | 0:85df64b421a8 | 47 | #endif |
daniwestside | 0:85df64b421a8 | 48 | |
daniwestside | 0:85df64b421a8 | 49 | /** @}*/ |
daniwestside | 0:85df64b421a8 | 50 |