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-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=920f8b15685eb3f378c6ba5865a57e5f4d36e042 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 c21ba209af2e..04ee6975bd5e 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;