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

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

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

revision 1481 by senoner, Wed Nov 14 23:42:15 2007 UTC revision 1644 by persson, Sat Jan 19 16:55:03 2008 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2007 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 59  namespace LinuxSampler { namespace gig { Line 59  namespace LinuxSampler { namespace gig {
59          CreationQueue->init();          CreationQueue->init();
60          DeletionQueue->init();          DeletionQueue->init();
61          DeletionNotificationQueue.init();          DeletionNotificationQueue.init();
62    
63            // make sure that all DimensionRegions are released
64            while (DeleteDimregQueue->read_space() > 0) {
65                ::gig::DimensionRegion* dimreg;
66                DeleteDimregQueue->pop(&dimreg);
67                pInstruments->HandBackDimReg(dimreg);
68            }
69          DeleteDimregQueue->init();          DeleteDimregQueue->init();
70          ActiveStreamCount = 0;          ActiveStreamCount = 0;
71          ActiveStreamCountMax = 0;          ActiveStreamCountMax = 0;

Legend:
Removed from v.1481  
changed lines
  Added in v.1644

  ViewVC Help
Powered by ViewVC