From: Stefan Metzmacher Date: Fri, 23 Jan 2009 09:42:31 +0000 (+0100) Subject: tevent: change SA_INFO_QUEUE_COUNT from 10 to 100 X-Git-Tag: samba-4.0.0alpha7~417^2~333 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=920f8b15685eb3f378c6ba5865a57e5f4d36e042;p=thirdparty%2Fsamba.git tevent: change SA_INFO_QUEUE_COUNT from 10 to 100 The samba3 aio code requires lp_max_mux() with a default of 50 and the samba3 linux oplock code requires 100. May we could make the size dynamic later. metze --- diff --git a/lib/tevent/tevent_signal.c b/lib/tevent/tevent_signal.c index c21ba209af2..04ee6975bd5 100644 --- a/lib/tevent/tevent_signal.c +++ b/lib/tevent/tevent_signal.c @@ -29,7 +29,7 @@ #define NUM_SIGNALS 64 /* maximum number of SA_SIGINFO signals to hold in the queue */ -#define SA_INFO_QUEUE_COUNT 10 +#define SA_INFO_QUEUE_COUNT 100 struct sigcounter { uint32_t count;