Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / TAO / performance-tests / CSD_Strategy / TestInf / TestAppBase.cpp
blob16a108876082ffe7e0875f9296cd33caa24707fa
1 #include "TestAppBase.h"
3 TestAppBase::TestAppBase(const char* name)
4 : name_(name)
9 TestAppBase::~TestAppBase()
14 const char*
15 TestAppBase::name() const
17 return this->name_.c_str();
21 int
22 TestAppBase::run(int argc, ACE_TCHAR* argv[])
24 int rc = this->run_i(argc, argv);
26 // Convert 1 to 0. Leave 0 and -1 as they are.
27 return (rc == 1) ? 0 : rc;