MCPcopy Create free account
hub / github.com/apache/nuttx / binfmt_dumpmodule

Function binfmt_dumpmodule

binfmt/binfmt_dumpmodule.c:57–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 ****************************************************************************/
56
57int binfmt_dumpmodule(FAR const struct binary_s *bin)
58{
59 if (bin)
60 {
61 binfo("Module:\n");
62 binfo(" entrypt: %p\n", bin->entrypt);
63 binfo(" mapped: %p size=%zd\n", bin->mapped, bin->mapsize);
64#ifdef CONFIG_ARCH_ADDRENV
65 binfo(" addrenv: %p\n", bin->addrenv);
66#endif
67 binfo(" stacksize: %zd\n", bin->stacksize);
68#ifndef CONFIG_BUILD_KERNEL
69 binfo(" stackaddr: %p\n", bin->stackaddr);
70#endif
71 binfo(" unload: %p\n", bin->unload);
72 }
73
74 return OK;
75}
76#endif

Callers 1

load_absmoduleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected