From 286b14b0c9d2dbad599e80cac9c269c9cd96b408 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 28 Feb 2012 23:38:59 +0000 Subject: Add logic to NSH startup to call C++ static initializers on startup git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4439 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/nsh/nsh_main.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/examples') diff --git a/apps/examples/nsh/nsh_main.c b/apps/examples/nsh/nsh_main.c index 5d302e397..1d1592b4d 100644 --- a/apps/examples/nsh/nsh_main.c +++ b/apps/examples/nsh/nsh_main.c @@ -45,6 +45,8 @@ #include #include +#include + #include /**************************************************************************** @@ -84,6 +86,12 @@ int user_start(int argc, char *argv[]) int exitval = 0; int ret; + /* Call all C++ static constructors */ + +#if defined(CONFIG_HAVE_CXX) && defined(CONFIG_HAVE_CXXINITIALIZE) + up_cxxinitialize(); +#endif + /* Initialize the NSH library */ nsh_initialize(); -- cgit v1.2.3