X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Ftstthreads.cpp;h=ac78157ec647845c3f4d79ed87ff9d728eb76ec4;hp=83af4dead822ced0db9773082fcebfdbaafdde7e;hb=02098acac83c12e26589fea83a0afd8f4e5018ca;hpb=8dc6d0bc4ddbb2d37b3aafd93396a0e4a8e87560 diff --git a/src/tstthreads.cpp b/src/tstthreads.cpp index 83af4de..ac78157 100644 --- a/src/tstthreads.cpp +++ b/src/tstthreads.cpp @@ -1,7 +1,7 @@ -/* $Id: tstthreads.cpp,v 1.9 2006-03-29 13:33:48 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 @@ -27,6 +27,10 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #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; }