]> SALOME platform Git repositories - modules/yacs.git/blob - src/bases/ThreadPT.cxx
Salome HOME
761670353c87e04bb3ba25f4215182fe23030514
[modules/yacs.git] / src / bases / ThreadPT.cxx
1 //  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #include "ThreadPT.hxx"
20 #include "Exception.hxx"
21 #include <unistd.h>
22
23 using namespace YACS::BASES;
24
25 ThreadPT::ThreadPT(ThreadJob funcPtr, void *stack)
26 {
27   int err;
28   void **stackT=(void **) stack;
29   err=pthread_create(&_threadId,0,funcPtr,stackT);
30   if(err!=0)throw Exception("Error in thread creation");
31 }
32
33 bool ThreadPT::operator==(const ThreadPT& other)
34 {
35   return pthread_equal(_threadId, other._threadId) != 0;
36 }
37
38 //! Detach thread to release resources on exit
39 void ThreadPT::detach()
40 {
41   pthread_detach(pthread_self());
42 }
43
44 void ThreadPT::exit(void *what)
45 {
46   pthread_exit(what);
47 }
48
49 void ThreadPT::join()
50 {
51   void *ret;
52   pthread_join(_threadId, &ret);
53 }
54
55 void ThreadPT::sleep(unsigned long usec)
56 {
57   usleep(usec);
58 }