Browse Source

Change global verbose variable

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

+ 1
- 1
common/JackClient.cpp View File

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

int verbose = 0;
//int verbose = 0;

using namespace std;



+ 2
- 0
common/JackError.c View File

@@ -22,6 +22,8 @@
#include <stdio.h>
#include "JackError.h"

int verbose = 0;

EXPORT void jack_error (const char *fmt, ...)
{
va_list ap;


+ 1
- 1
tests/testAtomic.cpp View File

@@ -25,7 +25,7 @@

using namespace Jack;

int verbose = 0;
//int verbose = 0;

#define SIZE 1024



+ 1
- 1
tests/testSem.cpp View File

@@ -32,7 +32,7 @@

#define ITER 500000

int verbose = 0;
//int verbose = 0;

using namespace Jack;



+ 1
- 1
tests/testSynchroClient.cpp View File

@@ -57,7 +57,7 @@

using namespace Jack;

int verbose = 0;
//int verbose = 0;

class Test2 : public JackRunnableInterface
{


+ 1
- 1
tests/testSynchroServer.cpp View File

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

int verbose = 0;
//int verbose = 0;

using namespace Jack;



+ 1
- 1
tests/testSynchroServerClient.cpp View File

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

int verbose = 0;
//int verbose = 0;

using namespace Jack;



Loading…
Cancel
Save