X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftest_thread_pool_observer.cpp;h=fc84b9bf10a7401d44afcf7f711c9526a5b9426f;hb=e0bd49319bf50c78026da47b7ffe38eef46ef408;hp=a894caead2f0201aa9985b1a7590bc488000476f;hpb=50597d2f7d3607e91c94601eb8eb495d73be3eae;p=metaproxy-moved-to-github.git diff --git a/src/test_thread_pool_observer.cpp b/src/test_thread_pool_observer.cpp index a894cae..fc84b9b 100644 --- a/src/test_thread_pool_observer.cpp +++ b/src/test_thread_pool_observer.cpp @@ -39,7 +39,8 @@ class My_Timer_Thread; class My_Msg : public mp::IThreadPoolMsg { public: mp::IThreadPoolMsg *handle(); - void result(); + void result(const char *t_info); + bool cleanup(void *info); int m_val; My_Timer_Thread *m_timer; }; @@ -70,15 +71,20 @@ mp::IThreadPoolMsg *My_Msg::handle() return res; } -void My_Msg::result() +bool My_Msg::cleanup(void *info) +{ + return false; +} + +void My_Msg::result(const char *t_info) { m_timer->m_sum += m_val; m_timer->m_responses++; } My_Timer_Thread::My_Timer_Thread(ISocketObservable *obs, - mp::ThreadPoolSocketObserver *t) : - m_obs(obs), m_pipe(9123) + mp::ThreadPoolSocketObserver *t) : + m_obs(obs), m_pipe(9123) { m_t = t; m_sum = 0; @@ -105,7 +111,7 @@ void My_Timer_Thread::socketNotify(int event) #endif } -BOOST_AUTO_TEST_CASE( thread_pool_observer1 ) +BOOST_AUTO_TEST_CASE( thread_pool_observer1 ) { SocketManager mySocketManager;