summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-01 16:50:53 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-01 16:50:53 +0000
commit43f7ddc7d410a4982ec78cc45cc413a3270d1b52 (patch)
tree6047f392552b62c0d5f6e7aabe95266b5f2ef0cf /nuttx/ChangeLog
parent86e0e99187f2074474404662a4e7cee3d2c5f2da (diff)
downloadnuttx-43f7ddc7d410a4982ec78cc45cc413a3270d1b52.tar.gz
nuttx-43f7ddc7d410a4982ec78cc45cc413a3270d1b52.tar.bz2
nuttx-43f7ddc7d410a4982ec78cc45cc413a3270d1b52.zip
Add __cxa_atexit(); atexit() is now built on top of on_exit()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5292 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 40ff0a51b..6fa9ffbfe 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3547,4 +3547,10 @@
is equivalent to !feof()); the others should be good.
* configs/stm32f4discovery/include/board.h: Correct timer 2-7
base frequency (provided by Freddie Chopin).
-
+ * include/nuttx/sched.h, sched/atexit.c, and sched/task_deletehook.c:
+ If both atexit() and on_exit() are enabled, then implement atexit()
+ as just a special caseof on_exit(). This assumes that the ABI can
+ handle receipt of more call parameters than the receiving function
+ expects. That is usually the case if parameters are passed in
+ registers.
+ * libxx/libxx_cxa_atexit(): Implements __cxa_atexit()