From cf67d0b813d64a69346563115d688fbde32263b1 Mon Sep 17 00:00:00 2001 From: joq Date: Tue, 6 Jun 2006 23:13:18 +0000 Subject: [PATCH] [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 --- configure.ac | 4 ++-- jackd/jackd.1.in | 2 +- jackd/jackd.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 16b3c08..77082e5 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/jackd/jackd.1.in b/jackd/jackd.1.in index 3bd98af..3cf957f 100644 --- a/jackd/jackd.1.in +++ b/jackd/jackd.1.in @@ -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 diff --git a/jackd/jackd.c b/jackd/jackd.c index fcb190b..2229d11 100644 --- a/jackd/jackd.c +++ b/jackd/jackd.c @@ -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;