aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/Utils/Thread.h
blob: 3daa02005f48f85ea477c30b262c7046405ce618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*-----------------------------------------------------------------
LOG
    GEM - Graphics Environment for Multimedia

    Thread.h
       - part of GEM
       - simple platform independent thread abstraction

    Copyright (c) 2011-2012 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
    For information on usage and redistribution, and for a DISCLAIMER OF ALL
    WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.

-----------------------------------------------------------------*/

#ifndef _INCLUDE__GEM_GEM_THREAD_H_
#define _INCLUDE__GEM_GEM_THREAD_H_

#include "Gem/ExportDef.h"

namespace gem
{
namespace thread
{
/**
 * get the number of available CPUs on the system
 */
GEM_EXTERN unsigned int getCPUCount(void);

class GEM_EXTERN Thread
{
private:
  class PIMPL;
  PIMPL*m_pimpl;
  friend class PIMPL;

  Thread(const Thread&);
  Thread&operator=(const Thread&);
public:
  Thread(void);
  virtual ~Thread(void);

  ////
  // start thread
  virtual bool start(void);
  ////
  // stop thread
  //  waits for at most wait4usec microseconds
  //  is wait4usec==0, waits until process terminates (e.g. forever)
  virtual bool stop(unsigned int wait4usec=0);

protected:
  ////
  // the worker!
  // get's called from an alternative thread
  // if TRUE is returned, process() will be called again
  //  until stop() is called
  // if FALSE is returned, the thread may exit
  virtual bool process(void) = 0;
};


////////
// wrapper around select() or whatever
GEM_EXTERN void usleep(unsigned long usec);
};
}; // namespace




#endif /* _INCLUDE__GEM_GEM_THREAD_H_ */