From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Tue, 28 Aug 2018 13:16:39 +0300 From: Vladimir Davydov Subject: Re: [tarantool-patches] [PATCH] Don't throw an exception in a replication handler Message-ID: <20180828101639.dk4ljocuwoimmyt7@esperanza> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: To: Georgy Kirichenko Cc: tarantool-patches@freelists.org List-ID: On Mon, Aug 27, 2018 at 04:28:09PM +0300, Georgy Kirichenko wrote: > + RLIMIT_CPU = 0, > + RLIMIT_FSIZE = 1, > + RLIMIT_DATA = 2, > + RLIMIT_STACK = 3, > + RLIMIT_CORE = 4, > + RLIMIT_RSS = 5, > + RLIMIT_NPROC = 6, > + RLIMIT_NOFILE = 7, > + RLIMIT_MEMLOCK = 8, > + RLIMIT_AS = 9, Turned out OS X uses different constants. E.g. RLIMIT_NOFILE is 8, not 7. Please fix.