From 09eac48792417206230798528de54a7d1c349f1d Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 23 Apr 2012 13:59:31 +0000 Subject: [PATCH] Fix atexit() function being called twice git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4644 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- 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 0b85fcb65e..85b5134694 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 dec4fca028..9d3af1c270 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: