aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-02 20:20:12 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-02 20:20:12 +0000
commite515bcf581c92643c21eb6ed53ba0d0b1604fe4b (patch)
treeefae1098d4db1532fcf51f1387add77747ffc061 /readme.txt
parentce91c3f44a3f0b9cacd07972a052c7360fb24053 (diff)
downloadChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.tar.gz
ChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.tar.bz2
ChibiOS-e515bcf581c92643c21eb6ed53ba0d0b1604fe4b.zip
Implemented registry subsystem (still in progress).
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1558 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/readme.txt b/readme.txt
index d97427fa0..724a57f20 100644
--- a/readme.txt
+++ b/readme.txt
@@ -52,14 +52,17 @@
*****************************************************************************
*** 1.5.1 ***
+- FIX: Fixed wrong notes on function chThdResume() (bug 2943160).
- NEW: Implemented the concept of thread references, this mechanism ensures
that a dynamic thread's memory is not freed while some other thread still
owns a pointer to the thread. Static threads are not affected by the new
mechanism. Two new APIs have been added: chThdAddRef() and chThdRelease().
-- NEW: Not more than one thread can be waiting in chThdWait(), this
- capability was already present in beta versions before 0.8.0 but removed
- because at the time there was not the references mechanism in place.
-
+- NEW: Not more than one thread can be waiting in chThdWait() as long they
+ own a reference.
+- NEW: Implemented a new threads registry subsystem, the registry allows to
+ enumerate the active threads at runtime. The registry is meant as both
+ a runtime API and a support for debuggers.
+
*** 1.5.0 ***
- FIX: Fixed missing dependencies check for CH_USE_DYNAMIC (bug 2942757)
(backported in 1.4.1).