MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / ACE_TMAIN

Function ACE_TMAIN

tools/rtpsrelay/control/RtpsRelayControl.cpp:331–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329}
330
331int ACE_TMAIN(int argc, ACE_TCHAR* argv[])
332{
333 try {
334 return run(argc, argv);
335 } catch (const CORBA::Exception& e) { // IDL-to-C++ classic sequences
336 e._tao_print_exception("RtpsRelayControl.cpp run():", stderr);
337 } catch (const std::exception& e) {
338 ACE_ERROR((LM_ERROR, "ERROR: exception thrown from run(): %C\n", e.what()));
339 } catch (...) {
340 ACE_ERROR((LM_ERROR, "ERROR: unknown exception thrown from run()\n"));
341 }
342 return EXIT_FAILURE;
343}

Callers

nothing calls this directly

Calls 3

_tao_print_exceptionMethod · 0.80
runFunction · 0.70
whatMethod · 0.45

Tested by

no test coverage detected