- Timestamp:
- 03/06/12 22:52:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/dimctrl.cc
r12964 r12993 43 43 } 44 44 45 int EvalOptions(Configuration & conf) { return -1; }45 int EvalOptions(Configuration &) { return -1; } 46 46 void Stop() { fStop = true; } 47 47 int Run(bool) { while (!fStop) usleep(1000); return 0; } … … 57 57 return -1; 58 58 59 if (!conf.Has("console")) 59 if (!conf.Has("console") || conf.Get<int>("console")==0) 60 return Main::execute<RemoteShell, DimCtrl>(conf); 61 else 60 62 return Main::execute<RemoteConsole, DimCtrl>(conf); 61 else62 return Main::execute<RemoteShell, DimCtrl>(conf);63 63 64 64 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.