From: Cyrill Gorcunov <gorcunov@gmail.com> To: tml <tarantool-patches@dev.tarantool.org> Cc: Alexander Turenko <alexander.turenko@tarantool.org> Subject: [Tarantool-patches] [PATCH 13/22] backtrace: use void for empty args Date: Fri, 3 Jul 2020 17:45:17 +0300 [thread overview] Message-ID: <20200703144526.522358-14-gorcunov@gmail.com> (raw) In-Reply-To: <20200703144526.522358-1-gorcunov@gmail.com> Part-of #4718 Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> --- src/lib/core/backtrace.cc | 6 +++--- src/lib/core/backtrace.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/core/backtrace.cc b/src/lib/core/backtrace.cc index 946420885..456ce9a4d 100644 --- a/src/lib/core/backtrace.cc +++ b/src/lib/core/backtrace.cc @@ -65,7 +65,7 @@ struct proc_cache_entry { }; void -backtrace_proc_cache_clear() +backtrace_proc_cache_clear(void) { if (proc_cache == NULL) return; @@ -131,7 +131,7 @@ get_proc_name(unw_cursor_t *unw_cur, unw_word_t *offset, bool skip_cache) } char * -backtrace() +backtrace(void) { int frame_no = 0; unw_word_t sp = 0, old_sp = 0, ip, offset; @@ -434,7 +434,7 @@ backtrace_foreach(backtrace_cb cb, coro_context *coro_ctx, void *cb_ctx) } void -print_backtrace() +print_backtrace(void) { fdprintf(STDERR_FILENO, "%s", backtrace()); } diff --git a/src/lib/core/backtrace.h b/src/lib/core/backtrace.h index ffdc9cd8e..c119d5402 100644 --- a/src/lib/core/backtrace.h +++ b/src/lib/core/backtrace.h @@ -40,7 +40,7 @@ extern "C" { #ifdef ENABLE_BACKTRACE #include <coro.h> -void print_backtrace(); +void print_backtrace(void); typedef int (backtrace_cb)(int frameno, void *frameret, const char *func, size_t offset, void *cb_ctx); @@ -50,7 +50,7 @@ void backtrace_foreach(backtrace_cb cb, coro_context *coro_ctx, void *cb_ctx); void -backtrace_proc_cache_clear(); +backtrace_proc_cache_clear(void); #endif /* ENABLE_BACKTRACE */ -- 2.26.2
next prev parent reply other threads:[~2020-07-03 14:48 UTC|newest] Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-07-03 14:45 [Tarantool-patches] [PATCH 00/22] Use void type in empty arguments list Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 01/22] version: use void for empty args Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 02/22] crc32: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 03/22] title: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 04/22] proc_title: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 05/22] systemd: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 06/22] main: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 07/22] say: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 08/22] memory: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 09/22] fiber: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 10/22] diag: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 11/22] coio: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 12/22] cbus: " Cyrill Gorcunov 2020-07-03 14:45 ` Cyrill Gorcunov [this message] 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 14/22] call: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 15/22] call_id_cache: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 16/22] schema: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 17/22] sql: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 18/22] user: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 19/22] session: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 20/22] iproto: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 21/22] wal: " Cyrill Gorcunov 2020-07-03 14:45 ` [Tarantool-patches] [PATCH 22/22] box: " Cyrill Gorcunov 2020-07-03 21:23 ` [Tarantool-patches] [PATCH 00/22] Use void type in empty arguments list Vladislav Shpilevoy 2020-07-04 7:30 ` Cyrill Gorcunov 2020-07-05 21:19 ` Timur Safin 2020-07-05 21:37 ` Cyrill Gorcunov 2020-07-06 13:33 ` Timur Safin 2020-07-06 15:09 ` Cyrill Gorcunov 2020-07-08 12:55 ` Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200703144526.522358-14-gorcunov@gmail.com \ --to=gorcunov@gmail.com \ --cc=alexander.turenko@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 13/22] backtrace: use void for empty args' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox