aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-12 18:12:32 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-12 18:12:32 +0000
commit50254892c53ac6fee9106c3362b2990505420189 (patch)
treeca34bb478666e549e607382a25661b2c3c39ab7f /readme.txt
parente4be2c3b13ec4bc059b5b1b2f40c7f84ce6ab77c (diff)
downloadChibiOS-50254892c53ac6fee9106c3362b2990505420189.tar.gz
ChibiOS-50254892c53ac6fee9106c3362b2990505420189.tar.bz2
ChibiOS-50254892c53ac6fee9106c3362b2990505420189.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1589 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/readme.txt b/readme.txt
index c37b59c37..f0f513737 100644
--- a/readme.txt
+++ b/readme.txt
@@ -59,15 +59,15 @@
that a dynamic thread's memory is not freed while some other thread still
owns a reference 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() as long they
+- NEW: Now 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.
+ enumerate the active threads at runtime and/or from a debugger. This is
+ a preparatory step for a dedicated ChibiOS/RT debugger.
- NEW: New chCoreFree() API that returns the core memory left.
- NEW: Added to the simulators shell demos two new commands: threads and mem,
- that show the active threads (using the new registry) and the memory
- allocators state.
+ that show the currently active threads (using the new registry) and the
+ memory allocators state.
- CHANGE: Doxygen tags cleanup in all the system code, comments are better
looking now.
- CHANGE: Documentation improvements.