From ab88f9017c977af3bb669a638f77552defff3fbf Mon Sep 17 00:00:00 2001 From: "Timur I. Bakeyev" Date: Sun, 7 Jun 2009 13:58:38 +0000 Subject: Set SIGRTMIN to NSIG In the includes we define SIGRTMIN to 32 if it's not defined already. This value could be fairly low and it's better to use NSIG(number of defined signals) as the lower mark for the available signals. We have similar defenition in the source3/smbd/aio.c, which can be safely removed, as it comes from includes.h then. With regards, Timur Bakeyev. Signed-off-by: Stefan Metzmacher --- source3/include/includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/includes.h b/source3/include/includes.h index 3ce63bb7a1..b7ba70325c 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -795,7 +795,7 @@ enum flush_reason_enum { #endif #ifndef SIGRTMIN -#define SIGRTMIN 32 +#define SIGRTMIN NSIG #endif #ifndef MAP_FILE -- cgit