diff options
author | Timur I. Bakeyev <timur@com.bat.ru> | 2009-06-07 13:58:38 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-06-08 13:20:52 +0200 |
commit | ab88f9017c977af3bb669a638f77552defff3fbf (patch) | |
tree | 8fa1e4d1a6c20eab9cab58009f95a6200c2eb964 /source3/include | |
parent | 16f5aedea0cd05113b5fbed06e140d7fedbad095 (diff) | |
download | samba-ab88f9017c977af3bb669a638f77552defff3fbf.tar.gz samba-ab88f9017c977af3bb669a638f77552defff3fbf.tar.bz2 samba-ab88f9017c977af3bb669a638f77552defff3fbf.zip |
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 <metze@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |