/[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 1648 by schoenebeck, Thu Nov 15 01:15:12 2007 UTC revision 1649 by nagata, Fri Jan 25 15:06:02 2008 UTC
# Line 56  class Thread { Line 56  class Thread {
56          virtual int  StopThread();          virtual int  StopThread();
57          virtual int  SignalStartThread();          virtual int  SignalStartThread();
58          virtual int  SignalStopThread();          virtual int  SignalStopThread();
59    
60                    inline int TestCancel() {
61    #if CONFIG_PTHREAD_TESTCANCEL
62                            pthread_testcancel();
63    #endif
64                            return 0;
65                    }
66    
67          virtual bool IsRunning();          virtual bool IsRunning();
68          virtual int  SetSchedulingPriority(); //FIXME: should be private          virtual int  SetSchedulingPriority(); //FIXME: should be private
69          virtual int  LockMemory();            //FIXME: should be private          virtual int  LockMemory();            //FIXME: should be private
# Line 137  class Thread { Line 145  class Thread {
145          int             PriorityMax;          int             PriorityMax;
146          int             PriorityDelta;          int             PriorityDelta;
147          bool            isRealTime;          bool            isRealTime;
148          bool            bLockedMemory;          bool            bLockedMemory;  
149  };  };
150    
151  } // namespace LinuxSampler  } // namespace LinuxSampler

Legend:
Removed from v.1648  
changed lines
  Added in v.1649

  ViewVC Help
Powered by ViewVC