Browse Source

[0.102.14]

* halve JACK_THREAD_STACK_TOUCH to 500000
  * increase default --port-max option from 128 to 256


git-svn-id: svn+ssh://jackaudio.org/trunk/jack@973 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
joq 19 years ago
parent
commit
cf67d0b813
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      configure.ac
  2. +1
    -1
      jackd/jackd.1.in
  3. +1
    -1
      jackd/jackd.c

+ 2
- 2
configure.ac View File

@@ -15,7 +15,7 @@ dnl changes are made
dnl ---
JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=102
JACK_MICRO_VERSION=13
JACK_MICRO_VERSION=14

dnl ---
dnl HOWTO: updating the jack protocol version
@@ -120,7 +120,7 @@ if test "${libdir}" = '${exec_prefix}/lib'; then
fi

# system-dependent config.h values
test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=1000000
test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=500000
AC_DEFINE_UNQUOTED(JACK_THREAD_STACK_TOUCH,
[$JACK_THREAD_STACK_TOUCH],
[Guaranteed size of realtime stack])


+ 1
- 1
jackd/jackd.1.in View File

@@ -56,7 +56,7 @@ variable. It will be "default" if that is not defined.
.TP
\fB\-p, \-\-port\-max \fI n\fR
Set the maximum number of ports the JACK server can manage.
The default value is 128.
The default value is 256.
.TP
\fB\-R, \-\-realtime\fR
.br


+ 1
- 1
jackd/jackd.c View File

@@ -63,7 +63,7 @@ static int do_mlock = 1;
static int temporary = 0;
static int verbose = 0;
static int client_timeout = 0; /* msecs; if zero, use period size. */
static unsigned int port_max = 128;
static unsigned int port_max = 256;
static int do_unlock = 0;
static jack_nframes_t frame_time_offset = 0;



Loading…
Cancel
Save