Salome HOME
Revert "Synchronize adm files"
[modules/yacs.git] / src / bases / ThreadPT.cxx
1 // Copyright (C) 2006-2014  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, or (at your option) any later version.
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
20 #include "ThreadPT.hxx"
21 #include "Exception.hxx"
22 #ifdef WIN32
23 #include <windows.h>
24 #define usleep(A) Sleep(A/1000)
25 #else
26 #include <unistd.h>
27 #endif
28
29 using namespace YACS::BASES;
30
31 ThreadPT::ThreadPT(ThreadJob funcPtr, void *stack, size_t stackSize)
32 {
33   int err;
34   void **stackT=(void **) stack;
35   pthread_attr_t attr;
36   pthread_attr_init(&attr);
37   if (stackSize > 0)
38     {
39       err = pthread_attr_setstacksize(&attr, stackSize);
40       if (err != 0) throw Exception("Error when setting thread stack size");
41     }
42   err = pthread_create(&_threadId, &attr, funcPtr, stackT);
43   pthread_attr_destroy(&attr);
44   if(err!=0)throw Exception("Error in thread creation");
45 }
46
47 bool ThreadPT::operator==(const ThreadPT& other)
48 {
49   return pthread_equal(_threadId, other._threadId) != 0;
50 }
51
52 //! Detach thread to release resources on exit
53 void ThreadPT::detach()
54 {
55   pthread_detach(pthread_self());
56 }
57
58 void ThreadPT::exit(void *what)
59 {
60   pthread_exit(what);
61 }
62
63 void ThreadPT::join()
64 {
65   void *ret;
66   pthread_join(_threadId, &ret);
67 }
68
69 void ThreadPT::sleep(unsigned long usec)
70 {
71   usleep(usec);
72 }