X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fmsg-thread.cpp;h=865896ac3967c3ec1ae84cb58b53299059285af5;hb=8b633921805ae0410a059fc30698735311ad1e6d;hp=0b6d91cad8e2a744e2851634bcb684567d841b7f;hpb=4e7b65539b3bea310f8d626d42e64cfd9e054dd5;p=yazproxy-moved-to-github.git diff --git a/src/msg-thread.cpp b/src/msg-thread.cpp index 0b6d91c..865896a 100644 --- a/src/msg-thread.cpp +++ b/src/msg-thread.cpp @@ -1,7 +1,7 @@ -/* $Id: msg-thread.cpp,v 1.7 2005-08-15 12:51:57 adam Exp $ - Copyright (c) 1998-2005, Index Data. +/* $Id: msg-thread.cpp,v 1.12 2006-03-30 10:31:17 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 @@ -23,13 +23,18 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include -#include +#include #include #include "msg-thread.h" using namespace yazpp_1; +IMsg_Thread::~IMsg_Thread() +{ + +} + Msg_Thread_Queue::Msg_Thread_Queue() { m_list = 0; @@ -73,7 +78,7 @@ static void *tfunc(void *p) } -Msg_Thread::Msg_Thread(ISocketObservable *obs) +Msg_Thread::Msg_Thread(ISocketObservable *obs, int no_threads) : m_SocketObservable(obs) { pipe(m_fd); @@ -84,17 +89,25 @@ Msg_Thread::Msg_Thread(ISocketObservable *obs) pthread_mutex_init(&m_mutex_input_data, 0); pthread_cond_init(&m_cond_input_data, 0); pthread_mutex_init(&m_mutex_output_data, 0); - pthread_create(&m_thread_id, 0, tfunc, this); + + m_no_threads = no_threads; + m_thread_id = new pthread_t[no_threads]; + int i; + for (i = 0; ideleteObserver(this);