aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-12-16 19:01:30 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-12-16 19:01:30 +0000
commit430010715e7a9af17185412273165674f3b58f20 (patch)
tree595c6897e48c954b29cc2b2e03855937f23fc182 /readme.txt
parentb196b277b9fe301ee2fa73f45be4d5e55d74e402 (diff)
downloadChibiOS-430010715e7a9af17185412273165674f3b58f20.tar.gz
ChibiOS-430010715e7a9af17185412273165674f3b58f20.tar.bz2
ChibiOS-430010715e7a9af17185412273165674f3b58f20.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@141 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
index 4348c6cba..18ba71eb5 100644
--- a/readme.txt
+++ b/readme.txt
@@ -39,6 +39,18 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
*** Releases ***
*****************************************************************************
+*** 0.5.0 ***
+- NEW: Binary Mutexes, the new mechanism provides a complete implementation
+ of the "priority inheritance" algorithm as a tool for work around the
+ priority inversion problem.
+ The Mutexes are not meant to replace the Semaphores that are still the best
+ mechanism for synchronization between interrupt handlers and high level
+ code, something Mutexes cannot do.
+ Soon an article will be added to the wiki describing pro and cons of the
+ various mechanisms and the correct use cases.
+- RT Semaphores subsystem removed, the Mutexes implements a better solution
+ for the same problem.
+
*** 0.4.5 ***
- Moved the serial IRQ handlers and VIC vectors initialization inside the
serial drivers. Now the serial-related code is all inside the driver.