Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Application::IDo::Exec2 ( CString  cmdLine,
CString  reDirect 
) [inline]

Definition at line 1598 of file mainIDo.cpp.

References CallSystem(), GetExtraArguments(), ILOG_INFO, mDryRun, mUseMpi, and Impala::StringResolveEnv().

Referenced by ClusterSiftExec(), MakeforestExec(), and MapExec().

01599     {
01600         String line = StringResolveEnv(cmdLine);
01601 
01602                 line += GetExtraArguments();
01603         line += reDirect;
01604 
01605         if (mUseMpi)
01606         {
01607             line =
01608                 "qrsh -now n -l h_rt=168:00:00 -cwd -noshell /bin/bash -l -c \""
01609                 + line + "\"";
01610         }
01611         if (mDryRun)
01612         {
01613             std::cout << line << std::endl;
01614         }
01615         else
01616         {
01617             ILOG_INFO("Exec2: " << line);
01618             CallSystem(line);
01619         }
01620     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:14:24 2011 for ImpalaSrc by  doxygen 1.5.1