X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_thread_pool_observer.cpp;h=3b2fe9a435dc69ac1a87af9c1b30b11f38de849a;hb=586d78659d671683f33ec55f4a7d32b28e345ccd;hp=9700db10e5a15249a70f7a0c5009daccc366a6aa;hpb=9633f388601013d6a4de9367a307dfe647dbbaa6;p=metaproxy-moved-to-github.git diff --git a/src/test_thread_pool_observer.cpp b/src/test_thread_pool_observer.cpp index 9700db1..3b2fe9a 100644 --- a/src/test_thread_pool_observer.cpp +++ b/src/test_thread_pool_observer.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2012 Index Data + Copyright (C) Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -40,6 +40,7 @@ class My_Msg : public mp::IThreadPoolMsg { public: mp::IThreadPoolMsg *handle(); void result(const char *t_info); + bool cleanup(void *info); int m_val; My_Timer_Thread *m_timer; }; @@ -70,6 +71,11 @@ mp::IThreadPoolMsg *My_Msg::handle() return res; } +bool My_Msg::cleanup(void *info) +{ + return false; +} + void My_Msg::result(const char *t_info) { m_timer->m_sum += m_val; @@ -77,8 +83,8 @@ void My_Msg::result(const char *t_info) } 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;