summaryrefslogtreecommitdiff
path: root/nuttx/binfmt/binfmt_dumpmodule.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-29 20:43:35 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-29 20:43:35 +0000
commitb7c575a7ec2b15a37e888f94408680303ace71a7 (patch)
treeb7c28580644d845360274723b39b8367ed109bba /nuttx/binfmt/binfmt_dumpmodule.c
parent9e45144d3ad1420908cfdf84306c76f637829023 (diff)
downloadnuttx-b7c575a7ec2b15a37e888f94408680303ace71a7.tar.gz
nuttx-b7c575a7ec2b15a37e888f94408680303ace71a7.tar.bz2
nuttx-b7c575a7ec2b15a37e888f94408680303ace71a7.zip
C++ static destructors work with ELF load too now
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5274 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/binfmt/binfmt_dumpmodule.c')
-rw-r--r--nuttx/binfmt/binfmt_dumpmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/binfmt/binfmt_dumpmodule.c b/nuttx/binfmt/binfmt_dumpmodule.c
index e095c4a67..40cbe4b21 100644
--- a/nuttx/binfmt/binfmt_dumpmodule.c
+++ b/nuttx/binfmt/binfmt_dumpmodule.c
@@ -91,7 +91,7 @@ int dump_module(FAR const struct binary_s *bin)
bdbg(" argv: %p\n", bin->argv);
bdbg(" entrypt: %p\n", bin->entrypt);
bdbg(" mapped: %p size=%d\n", bin->mapped, bin->mapsize);
- bdbg(" alloc: %p %p\n", bin->alloc[0], bin->alloc[1]);
+ bdbg(" alloc: %p %p %p\n", bin->alloc[0], bin->alloc[1], bin->alloc[2]);
#ifdef CONFIG_BINFMT_CONSTRUCTORS
bdbg(" ctors: %p nctors=%d\n", bin->ctors, bin->nctors);
bdbg(" dtors: %p ndtors=%d\n", bin->dtors, bin->ndtors);