|
|
|
@ -527,7 +527,7 @@ int Booster::launchProcess()
|
|
|
|
setEnvironmentBeforeLaunch();
|
|
|
|
setEnvironmentBeforeLaunch();
|
|
|
|
|
|
|
|
|
|
|
|
// Load the application and find out the address of main()
|
|
|
|
// Load the application and find out the address of main()
|
|
|
|
void* handle = loadMain();
|
|
|
|
loadMain();
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_COVERAGE
|
|
|
|
#ifdef WITH_COVERAGE
|
|
|
|
__gcov_flush();
|
|
|
|
__gcov_flush();
|
|
|
|
@ -535,7 +535,6 @@ int Booster::launchProcess()
|
|
|
|
|
|
|
|
|
|
|
|
// Jump to main()
|
|
|
|
// Jump to main()
|
|
|
|
const int retVal = m_appData->entry()(m_appData->argc(), const_cast<char **>(m_appData->argv()));
|
|
|
|
const int retVal = m_appData->entry()(m_appData->argc(), const_cast<char **>(m_appData->argv()));
|
|
|
|
dlclose(handle);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_COVERAGE
|
|
|
|
#ifdef WITH_COVERAGE
|
|
|
|
__gcov_flush();
|
|
|
|
__gcov_flush();
|
|
|
|
|