From: <mik...@us...> - 2003-12-26 22:56:45
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web/src/thread In directory sc8-pr-cvs1:/tmp/cvs-serv3848/src/thread Modified Files: Thread.cpp Log Message: 26/12/2003 Mikael Barbeaux * Added a test program for Http sockets. * Fixed a problem about accepting sockets which were an infinite process. * Implemented main http controls : HttpRequest, HttpResponse, HttpSocket, HttpServerSocket and Writers Index: Thread.cpp =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/src/thread/Thread.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Thread.cpp 24 Dec 2003 13:03:54 -0000 1.1 +++ Thread.cpp 26 Dec 2003 22:56:42 -0000 1.2 @@ -76,7 +76,7 @@ * Sets a cancellation point. */ void Thread::setCancelPoint() throw (ThreadException) { - lock(); + lock(); // exit thread if cancellation has been requested if(cancel_th) { running = false; |