From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 0015C2BC63 for ; Thu, 11 Apr 2019 18:17:25 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P5J-2u7k3P_h for ; Thu, 11 Apr 2019 18:17:25 -0400 (EDT) Received: from mail-lj1-f178.google.com (mail-lj1-f178.google.com [209.85.208.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id A30C929A00 for ; Thu, 11 Apr 2019 18:17:25 -0400 (EDT) Received: by mail-lj1-f178.google.com with SMTP id f18so6976059lja.10 for ; Thu, 11 Apr 2019 15:17:25 -0700 (PDT) From: Cyrill Gorcunov Subject: [tarantool-patches] [PATCH 1/2] fiber: Drop unused FIBER_CALL_STACK Date: Fri, 12 Apr 2019 01:17:08 +0300 Message-Id: <20190411221709.17340-2-gorcunov@gmail.com> In-Reply-To: <20190411221709.17340-1-gorcunov@gmail.com> References: <20190411221709.17340-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tml Cc: Cyrill Gorcunov The constant is leftover from 0858590216ba36cd5e4f69be84f643fd00a85e87 --- src/lib/core/fiber.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/core/fiber.h b/src/lib/core/fiber.h index 89fb04284..6cc51bda3 100644 --- a/src/lib/core/fiber.h +++ b/src/lib/core/fiber.h @@ -433,8 +433,6 @@ struct fiber { char name[FIBER_NAME_MAX + 1]; }; -enum { FIBER_CALL_STACK = 16 }; - struct cord_on_exit; /** -- 2.20.1