From: Adam Dickmeiss Date: Wed, 5 Oct 2005 12:05:59 +0000 (+0000) Subject: Start 3 servers in test of Msg_Thread X-Git-Tag: YAZPROXY.1.1.0.2~47 X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=commitdiff_plain;h=5108598ba9fe27a03aad0371d28bb7062b6463fc Start 3 servers in test of Msg_Thread --- diff --git a/src/tstthreads.cpp b/src/tstthreads.cpp index 97ef2c8..bbbb865 100644 --- a/src/tstthreads.cpp +++ b/src/tstthreads.cpp @@ -1,4 +1,4 @@ -/* $Id: tstthreads.cpp,v 1.7 2005-09-12 20:09:14 adam Exp $ +/* $Id: tstthreads.cpp,v 1.8 2005-10-05 12:05:59 adam Exp $ Copyright (c) 1998-2005, Index Data. This file is part of the yaz-proxy. @@ -69,7 +69,7 @@ My_Timer_Thread::My_Timer_Thread(ISocketObservable *obs, m_t = t; obs->addObserver(m_fd[0], this); obs->maskObserver(this, SOCKET_OBSERVE_READ); - obs->timeoutObserver(this, 2); + obs->timeoutObserver(this, 1); } void My_Timer_Thread::socketNotify(int event) @@ -85,7 +85,7 @@ int main(int argc, char **argv) { SocketManager mySocketManager; - Msg_Thread m(&mySocketManager, 1); + Msg_Thread m(&mySocketManager, 3); My_Timer_Thread t(&mySocketManager, &m) ; int i = 0; while (++i < 5 && mySocketManager.processEvent() > 0)