From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f193.google.com (mail-lj1-f193.google.com [209.85.208.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id DA4A1469710 for ; Tue, 26 May 2020 15:47:16 +0300 (MSK) Received: by mail-lj1-f193.google.com with SMTP id b6so24333962ljj.1 for ; Tue, 26 May 2020 05:47:16 -0700 (PDT) From: Cyrill Gorcunov Date: Tue, 26 May 2020 15:46:21 +0300 Message-Id: <20200526124627.82843-5-gorcunov@gmail.com> In-Reply-To: <20200526124627.82843-1-gorcunov@gmail.com> References: <20200526124627.82843-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v2 04/10] lua/log: declare say_logger_init and say_logger_initialized List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Alexander Turenko We gonna use it to provide a way to initialize logger subsystem early. Part-of #689 Signed-off-by: Cyrill Gorcunov --- src/lua/log.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lua/log.lua b/src/lua/log.lua index 312c14d5e..9830b0886 100644 --- a/src/lua/log.lua +++ b/src/lua/log.lua @@ -1,5 +1,7 @@ -- log.lua -- +-- vim: ts=4 sw=4 et + local ffi = require('ffi') ffi.cdef[[ typedef void (*sayfunc_t)(int level, const char *filename, int line, @@ -22,6 +24,12 @@ ffi.cdef[[ void say_set_log_format(enum say_format format); + extern void + say_logger_init(const char *init_str, int level, int nonblock, + const char *format, int background); + + extern bool + say_logger_initialized(void); extern sayfunc_t _say; extern struct ev_loop; -- 2.26.2