aboutsummaryrefslogtreecommitdiff
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
commiteb26187767da1e752bfdc6571ccb70e3f84fd954 (patch)
tree6047f392552b62c0d5f6e7aabe95266b5f2ef0cf /nuttx/ChangeLog
parent1214744afca8851c7888b6b3f2bb8b47c5a815e2 (diff)
downloadpx4-firmware-eb26187767da1e752bfdc6571ccb70e3f84fd954.tar.gz
px4-firmware-eb26187767da1e752bfdc6571ccb70e3f84fd954.tar.bz2
px4-firmware-eb26187767da1e752bfdc6571ccb70e3f84fd954.zip
Add __cxa_atexit(); atexit() is now built on top of on_exit()
git-svn-id: http://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()