Browse Source

add no-op support for jack2's -S option

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@4085 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.120.1
paul 15 years ago
parent
commit
015fbf3ff7
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      jackd/jackd.c

+ 5
- 0
jackd/jackd.c View File

@@ -541,6 +541,7 @@ main (int argc, char *argv[])
{ "realtime", 0, 0, 'R' },
{ "replace-registry", 0, &replace_registry, 0 },
{ "silent", 0, 0, 's' },
{ "sync", 0, 0, 'S' },
{ "timeout", 1, 0, 't' },
{ "temporary", 0, 0, 'T' },
{ "unlock", 0, 0, 'u' },
@@ -634,6 +635,10 @@ main (int argc, char *argv[])
jack_set_error_function (silent_jack_error_callback);
break;

case 'S':
/* this option is for jack2 only (synchronous mode) */
break;

case 'T':
temporary = 1;
break;


Loading…
Cancel
Save