Update of /cvsroot/pclasses/pclasses/src/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10540
Modified Files:
pthreadpool.cpp
Log Message:
removed an unused var, to stop a warning from the compiler
Index: pthreadpool.cpp
===================================================================
RCS file: /cvsroot/pclasses/pclasses/src/core/pthreadpool.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- pthreadpool.cpp 3 May 2004 06:47:22 -0000 1.5
+++ pthreadpool.cpp 1 Jan 2005 19:42:36 -0000 1.6
@@ -276,7 +276,7 @@
{
m_lock.lock();
- ThreadJob* job = (ThreadJob*)worker->m_job;
+ // ThreadJob* job = (ThreadJob*)worker->m_job;
/* finish job, killing the worker thread if max number of idle
threads is already reached ... */
|