From 39276ef39cd2d9303eb0da42c722ff58365a691e Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 30 Jan 2008 18:49:31 +0000 Subject: [PATCH] errno was clobbered by mm_trysemaphore when task exists git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@591 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index 2c7d6531a9f..0fdeffaee2d 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: January 9, 2008

+

Last Updated: January 30, 2008

@@ -984,7 +984,9 @@ Other memory: * Add support for Windows native toolchains that cannot follow Cygwin soft links * Modified serial driver interface to handle hardware with non-16550A-like interrupt architecture (like the Z16F) - * Added a "dumb" serial console driver to simply OS bringup + * Added a "dumb" serial console driver to simplify OS bringup + * Corrected a bug that caused the errno value of one task to be clobbered + when a different task exits. Effects all architectures.