Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.

Dependents:   denki-yohou_b TestY201 Network-RTOS NTPClient_HelloWorld ... more

Deprecated

This is the mbed 2 rtos library. mbed OS 5 integrates the mbed library with mbed-rtos. With this, we have provided thread safety for all mbed APIs. If you'd like to learn about using mbed OS 5, please see the docs.

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Thu Jan 22 07:45:07 2015 +0000
Parent:
61:9387d4c49609
Child:
63:5448826aa700
Commit message:
Synchronized with git revision 1c9ba7ca9c2fdab8507ea1e4e08bc60c22a732d3

Full URL: https://github.com/mbedmicro/mbed/commit/1c9ba7ca9c2fdab8507ea1e4e08bc60c22a732d3/

Correct warning when assigning HEAP_START to stack_pointer

Changed in this revision

rtx/TARGET_CORTEX_M/RTX_CM_lib.h Show annotated file Show diff for this revision Revisions of this file
--- a/rtx/TARGET_CORTEX_M/RTX_CM_lib.h	Mon Jan 12 08:15:33 2015 +0000
+++ b/rtx/TARGET_CORTEX_M/RTX_CM_lib.h	Thu Jan 22 07:45:07 2015 +0000
@@ -304,10 +304,10 @@
 #endif
 
 #ifdef __CC_ARM
-extern unsigned char     Image$$RW_IRAM1$$ZI$$Limit[];
+extern uint32_t          Image$$RW_IRAM1$$ZI$$Limit[];
 #define HEAP_START      (Image$$RW_IRAM1$$ZI$$Limit)
 #elif defined(__GNUC__)
-extern unsigned char     __end__[];
+extern uint32_t          __end__[];
 #define HEAP_START      (__end__)
 #elif defined(__ICCARM__)
 #pragma section="HEAP"