aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-10-01 17:44:01 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2007-10-01 17:44:01 +0000
commite4e90fae74549139baaf135034b3be2abcf284a6 (patch)
tree0ebd328bb1ef1fe411ba5932553d198fbe253ac5 /readme.txt
parent3a90ab685aaae59f242ae31260e67e9125ae78cd (diff)
downloadChibiOS-e4e90fae74549139baaf135034b3be2abcf284a6.tar.gz
ChibiOS-e4e90fae74549139baaf135034b3be2abcf284a6.tar.bz2
ChibiOS-e4e90fae74549139baaf135034b3be2abcf284a6.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@28 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/readme.txt b/readme.txt
index 347262f18..526126ee7 100644
--- a/readme.txt
+++ b/readme.txt
@@ -44,9 +44,8 @@ LPC214x-GCC - ChibiOS/RT port for ARM7 LPC2148, the demo targets the
which semaphore a thread is waiting on. It takes no space because it is
located in the union inside the Thread structure. This also allowed a minor
optimization inside chSemWaitTimeout() and chSemWaitTimeoutS().
-- Changed the priority constants in order to make the t_prio type compatible
- with a signed byte, this is very important for 8 bits architectures.
- Now the threads priorities can range from 1 to 63, more than enough anyway.
+- Changed the priority type to unsigned in order to make it compatible
+ with a byte value, this is very important for 8 bits architectures.
- Fixed bug in chEvtWaitTimeout(), the timeout code performed a useless
dequeue operation.
- Fixed bug on RT semaphores, the priority queuing was broken.