Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832 EthernetInterface LM75B MMA7660 MQTT mbed-rtos mbed
Fork of IBMIoTClientEthernetExample by
mbed-rtos/rtos/rtos.h@8:80d49dd91542, 2014-10-01 (annotated)
- Committer:
- icraggs
- Date:
- Wed Oct 01 13:27:35 2014 +0000
- Revision:
- 8:80d49dd91542
- Parent:
- 6:37b6d0d56190
Remove conditional compilation for IBM IoT settings
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| samdanbury | 6:37b6d0d56190 | 1 | /* mbed Microcontroller Library |
| samdanbury | 6:37b6d0d56190 | 2 | * Copyright (c) 2006-2012 ARM Limited |
| samdanbury | 6:37b6d0d56190 | 3 | * |
| samdanbury | 6:37b6d0d56190 | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| samdanbury | 6:37b6d0d56190 | 5 | * of this software and associated documentation files (the "Software"), to deal |
| samdanbury | 6:37b6d0d56190 | 6 | * in the Software without restriction, including without limitation the rights |
| samdanbury | 6:37b6d0d56190 | 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| samdanbury | 6:37b6d0d56190 | 8 | * copies of the Software, and to permit persons to whom the Software is |
| samdanbury | 6:37b6d0d56190 | 9 | * furnished to do so, subject to the following conditions: |
| samdanbury | 6:37b6d0d56190 | 10 | * |
| samdanbury | 6:37b6d0d56190 | 11 | * The above copyright notice and this permission notice shall be included in |
| samdanbury | 6:37b6d0d56190 | 12 | * all copies or substantial portions of the Software. |
| samdanbury | 6:37b6d0d56190 | 13 | * |
| samdanbury | 6:37b6d0d56190 | 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| samdanbury | 6:37b6d0d56190 | 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| samdanbury | 6:37b6d0d56190 | 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| samdanbury | 6:37b6d0d56190 | 17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| samdanbury | 6:37b6d0d56190 | 18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| samdanbury | 6:37b6d0d56190 | 19 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| samdanbury | 6:37b6d0d56190 | 20 | * SOFTWARE. |
| samdanbury | 6:37b6d0d56190 | 21 | */ |
| samdanbury | 6:37b6d0d56190 | 22 | #ifndef RTOS_H |
| samdanbury | 6:37b6d0d56190 | 23 | #define RTOS_H |
| samdanbury | 6:37b6d0d56190 | 24 | |
| samdanbury | 6:37b6d0d56190 | 25 | #include "Thread.h" |
| samdanbury | 6:37b6d0d56190 | 26 | #include "Mutex.h" |
| samdanbury | 6:37b6d0d56190 | 27 | #include "RtosTimer.h" |
| samdanbury | 6:37b6d0d56190 | 28 | #include "Semaphore.h" |
| samdanbury | 6:37b6d0d56190 | 29 | #include "Mail.h" |
| samdanbury | 6:37b6d0d56190 | 30 | #include "MemoryPool.h" |
| samdanbury | 6:37b6d0d56190 | 31 | #include "Queue.h" |
| samdanbury | 6:37b6d0d56190 | 32 | |
| samdanbury | 6:37b6d0d56190 | 33 | using namespace rtos; |
| samdanbury | 6:37b6d0d56190 | 34 | |
| samdanbury | 6:37b6d0d56190 | 35 | #endif |
