/[svn]/linuxsampler/trunk/src/engines/gig/DiskThread.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/DiskThread.h

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

revision 1424 by schoenebeck, Sun Oct 14 22:00:17 2007 UTC revision 1789 by iliev, Sat Nov 1 19:01:27 2008 UTC
# Line 62  namespace LinuxSampler { namespace gig { Line 62  namespace LinuxSampler { namespace gig {
62    
63              // the number of streams currently in usage              // the number of streams currently in usage
64              // printed on the console the main thread (along with the active voice count)              // printed on the console the main thread (along with the active voice count)
65              int ActiveStreamCount;              uint GetActiveStreamCount() { return atomic_read(&ActiveStreamCount); }
66                void SetActiveStreamCount(uint Streams) { atomic_set(&ActiveStreamCount, Streams); }
67              int ActiveStreamCountMax;              int ActiveStreamCountMax;
68    
69          protected:          protected:
# Line 108  namespace LinuxSampler { namespace gig { Line 109  namespace LinuxSampler { namespace gig {
109              void                           RefillStreams();              void                           RefillStreams();
110              Stream::Handle                 CreateHandle();              Stream::Handle                 CreateHandle();
111              Stream::OrderID_t              CreateOrderID();              Stream::OrderID_t              CreateOrderID();
112    
113                atomic_t ActiveStreamCount;
114      };      };
115    
116  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

Legend:
Removed from v.1424  
changed lines
  Added in v.1789

  ViewVC Help
Powered by ViewVC