X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Ftstthreads.cpp;h=ac78157ec647845c3f4d79ed87ff9d728eb76ec4;hp=f721f40948f66338458033183d28d78f6bc6d2b3;hb=acf534916169e14e2c33c9edb1b8a6f6c30c836c;hpb=ee8cfba95daa813ea4dd66ba9e99066db5e5b967 diff --git a/src/tstthreads.cpp b/src/tstthreads.cpp index f721f40..ac78157 100644 --- a/src/tstthreads.cpp +++ b/src/tstthreads.cpp @@ -1,7 +1,7 @@ -/* $Id: tstthreads.cpp,v 1.5 2005-06-08 13:29:03 adam Exp $ - Copyright (c) 1998-2005, Index Data. +/* $Id: tstthreads.cpp,v 1.11 2006-03-30 14:19:19 adam Exp $ + Copyright (c) 1998-2006, Index Data. -This file is part of the yaz-proxy. +This file is part of the yazproxy. YAZ proxy 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 @@ -22,11 +22,15 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include -#include +#include +#include #include #include "msg-thread.h" +#if HAVE_UNISTD_H +#include +#endif + using namespace yazpp_1; class My_Msg : public IMsg_Thread { @@ -43,7 +47,9 @@ IMsg_Thread *My_Msg::handle() res->m_val = m_val; printf("My_Msg::handle val=%d sleep=%d\n", m_val, sl); +#if HAVE_UNISTD_H sleep(sl); +#endif return res; } @@ -63,13 +69,13 @@ public: }; My_Timer_Thread::My_Timer_Thread(ISocketObservable *obs, - Msg_Thread *t) : m_obs(obs) + Msg_Thread *t) : m_obs(obs) { pipe(m_fd); 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,10 +91,18 @@ int main(int argc, char **argv) { SocketManager mySocketManager; - Msg_Thread m(&mySocketManager); + Msg_Thread m(&mySocketManager, 3); My_Timer_Thread t(&mySocketManager, &m) ; int i = 0; while (++i < 5 && mySocketManager.processEvent() > 0) - ; + ; return 0; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +