Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2654 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
0f93461b3f
4 changed files with 6 additions and 5295 deletions
  1. +3
    -2
      common/JackAtomicArrayState.h
  2. +3
    -3
      common/JackAtomicState.h
  3. +0
    -1
      common/JackResampler.h
  4. +0
    -5289
      macosx/Jackdmp.xcode/project.pbxproj

+ 3
- 2
common/JackAtomicArrayState.h View File

@@ -42,7 +42,7 @@ struct AtomicArrayCounter
AtomicArrayCounter()
{
info.fLongVal = 0;
info.fLongVal = 0;
}

AtomicArrayCounter(volatile const AtomicArrayCounter& obj)
@@ -52,7 +52,7 @@ struct AtomicArrayCounter

AtomicArrayCounter(volatile AtomicArrayCounter& obj)
{
info.fLongVal = obj.info.fLongVal;
info.fLongVal = obj.info.fLongVal;
}

AtomicArrayCounter& operator=(volatile AtomicArrayCounter& obj)
@@ -241,6 +241,7 @@ class JackAtomicArrayState
/*!
\brief Stop write operation : make the next state ready to be used by the RT thread
*/
void WriteNextStateStop(int state)
{
WriteNextStateStopAux(state);


+ 3
- 3
common/JackAtomicState.h View File

@@ -238,15 +238,15 @@ class JackAtomicState
{
T* state;
UInt16 cur_index;
UInt16 next_index = GetCurrentIndex();
UInt16 next_index = GetCurrentIndex();
do {
cur_index = next_index;
cur_index = next_index;
state = ReadCurrentState();
......
......
next_index = GetCurrentIndex();
next_index = GetCurrentIndex();
} while (cur_index != next_index);
}
*/


+ 0
- 1
common/JackResampler.h View File

@@ -23,7 +23,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "ringbuffer.h"
#include "JackError.h"


namespace Jack
{



+ 0
- 5289
macosx/Jackdmp.xcode/project.pbxproj
File diff suppressed because it is too large
View File


Loading…
Cancel
Save