Browse Source

Rename global verbose in jack_verbose to avoid symbol clash with PureData

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1249 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.59
sletz 18 years ago
parent
commit
59e79b856d
9 changed files with 6 additions and 14 deletions
  1. +5
    -1
      ChangeLog
  2. +0
    -2
      common/JackClient.cpp
  3. +0
    -1
      common/JackEngine.cpp
  4. +1
    -0
      common/JackServer.cpp
  5. +0
    -2
      tests/testAtomic.cpp
  6. +0
    -2
      tests/testSem.cpp
  7. +0
    -2
      tests/testSynchroClient.cpp
  8. +0
    -2
      tests/testSynchroServer.cpp
  9. +0
    -2
      tests/testSynchroServerClient.cpp

+ 5
- 1
ChangeLog View File

@@ -1,6 +1,10 @@
---------------------------
Jackdmp changes log
---------------------------
---------------------------

2006-09-23 Stephane Letz <letz@grame.fr>
* Rename global "verbose" in "jack_verbose" to avoid symbol clash with PureData.
2006-09-20 Stephane Letz <letz@grame.fr>


+ 0
- 2
common/JackClient.cpp View File

@@ -29,8 +29,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <math.h>
#include <string>

//int verbose = 0;

using namespace std;

namespace Jack


+ 0
- 1
common/JackEngine.cpp View File

@@ -43,7 +43,6 @@ JackEngine::JackEngine(JackGraphManager* manager, JackSynchro** table, JackEngin
fEngineControl->fRealTime = rt;
fEngineControl->fPriority = priority;
fEngineControl->fVerbose = ve;
//verbose = ve;
fChannel = JackGlobals::MakeServerNotifyChannel();
fTiming = new JackEngineTiming(fClientTable, fGraphManager, fEngineControl);
fSignal = signal;


+ 1
- 0
common/JackServer.cpp View File

@@ -60,6 +60,7 @@ JackServer::JackServer(bool sync, long timeout, bool rt, long priority, long loo
fDriverInfo = NULL;
fAudioDriver = NULL;
fInstance = this; // Unique instance
jack_verbose = verbose;
}

JackServer::~JackServer()


+ 0
- 2
tests/testAtomic.cpp View File

@@ -25,8 +25,6 @@

using namespace Jack;

//int verbose = 0;

#define SIZE 1024

struct TestState {


+ 0
- 2
tests/testSem.cpp View File

@@ -32,8 +32,6 @@

#define ITER 500000

//int verbose = 0;

using namespace Jack;

struct ServerThread : public JackRunnableInterface {


+ 0
- 2
tests/testSynchroClient.cpp View File

@@ -57,8 +57,6 @@

using namespace Jack;

//int verbose = 0;

class Test2 : public JackRunnableInterface
{



+ 0
- 2
tests/testSynchroServer.cpp View File

@@ -55,8 +55,6 @@
#define SERVER "serveur3"
#define CLIENT "client3"

//int verbose = 0;

using namespace Jack;

#ifdef WIN32


+ 0
- 2
tests/testSynchroServerClient.cpp View File

@@ -56,8 +56,6 @@
#define SERVER "serveur1"
#define CLIENT "client1"

//int verbose = 0;

using namespace Jack;

#ifdef WIN32


Loading…
Cancel
Save