From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 8F5E745C304 for ; Sun, 20 Dec 2020 18:45:49 +0300 (MSK) References: <20201210161832.729439-1-gorcunov@gmail.com> <20201210161832.729439-4-gorcunov@gmail.com> From: Vladislav Shpilevoy Message-ID: Date: Sun, 20 Dec 2020 16:45:46 +0100 MIME-Version: 1.0 In-Reply-To: <20201210161832.729439-4-gorcunov@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH v4 3/4] crash: move fatal signal handling in List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cyrill Gorcunov , tml Cc: Mons Anderson > diff --git a/src/lib/core/crash.h b/src/lib/core/crash.h > new file mode 100644 > index 000000000..d107cd953 > --- /dev/null > +++ b/src/lib/core/crash.h > @@ -0,0 +1,32 @@ > +/* > + * SPDX-License-Identifier: BSD-2-Clause > + * > + * Copyright 2010-2020, Tarantool AUTHORS, please see AUTHORS file. > + */ > +#pragma once > + > +#include > +#include > +#include > + > +#include "trivia/config.h" Why are these headers here? Crash.h does not use anything except what is present in the language syntax.