/[svn]/linuxsampler/trunk/src/common/Thread.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/common/Thread.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 56 by schoenebeck, Tue Apr 27 09:21:58 2004 UTC revision 57 by schoenebeck, Sun May 2 17:45:43 2004 UTC
# Line 39  class Thread { Line 39  class Thread {
39          virtual ~Thread();          virtual ~Thread();
40          virtual int  StartThread();          virtual int  StartThread();
41          virtual int  StopThread();          virtual int  StopThread();
42            virtual int  SignalStartThread();
43          virtual int  SignalStopThread();          virtual int  SignalStopThread();
44          virtual bool IsRunning() { return Running; }          virtual bool IsRunning() { return Running; }
45          virtual int  SetSchedulingPriority(); //FIXME: should be private          virtual int  SetSchedulingPriority(); //FIXME: should be private
# Line 49  class Thread { Line 50  class Thread {
50          pthread_t       __thread_id;          pthread_t       __thread_id;
51          pthread_key_t   __thread_destructor_key;          pthread_key_t   __thread_destructor_key;
52          pthread_mutex_t __thread_state_mutex;          pthread_mutex_t __thread_state_mutex;
53            pthread_cond_t  __thread_start_condition;
54          pthread_cond_t  __thread_exit_condition;          pthread_cond_t  __thread_exit_condition;
55          int             PriorityMax;          int             PriorityMax;
56          int             PriorityDelta;          int             PriorityDelta;

Legend:
Removed from v.56  
changed lines
  Added in v.57

  ViewVC Help
Powered by ViewVC