From 68bc7cefbd11c4dbeca86fb64fac3466dd4f5b69 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 23 Apr 2012 13:59:31 +0000 Subject: Fix atexit() function being called twice git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4644 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/Documentation/NuttX.html | 17 ++++++++++--- nuttx/Documentation/NuttxUserGuide.html | 6 +++++ nuttx/arch/arm/src/stm32/Kconfig | 42 +++++++++++++++++++++++++++++++++ nuttx/configs/README.txt | 3 --- nuttx/configs/pic32mx7mmb/README.txt | 2 +- nuttx/sched/task_delete.c | 18 ++++++++++++++ nuttx/sched/task_exithook.c | 18 ++++++++++++++ 7 files changed, 99 insertions(+), 7 deletions(-) diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html index 0b85fcb65..85b513469 100644 --- a/nuttx/Documentation/NuttX.html +++ b/nuttx/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: April 14, 2012

+

Last Updated: April 23, 2012

@@ -2228,10 +2228,13 @@

PIC32MX795F512L. - This port uses the Microchip PIC32 Ethernet Starter Kit (DM320004) with the Expansion I/O board. - See the Microchip website for further information. + There one two board ports using this chip:

diff --git a/nuttx/Documentation/NuttxUserGuide.html b/nuttx/Documentation/NuttxUserGuide.html index dec4fca02..9d3af1c27 100644 --- a/nuttx/Documentation/NuttxUserGuide.html +++ b/nuttx/Documentation/NuttxUserGuide.html @@ -522,6 +522,12 @@ And the UNIX interface: The task is first terminated and then reinitialized with same ID, priority, original entry point, stack size, and parameters it had when it was first started. +

+

+NOTE: The normal task exit clean up is not performed. +For example, file descriptors are not closed; +any files opened prior to the restart will remain opened after the task is restarted. +

Input Parameters: