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 5AA08469719 for ; Tue, 10 Nov 2020 10:15:32 +0300 (MSK) Received: by mail-lj1-f193.google.com with SMTP id y16so13489520ljk.1 for ; Mon, 09 Nov 2020 23:15:32 -0800 (PST) Date: Tue, 10 Nov 2020 10:15:28 +0300 From: Cyrill Gorcunov Message-ID: <20201110071528.GA2250@grain> References: <9ff106dcc7104576afdbbf05107cf8cc94a649ad.1604966200.git.v.shpilevoy@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9ff106dcc7104576afdbbf05107cf8cc94a649ad.1604966200.git.v.shpilevoy@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v2 1/4] fiber: introduce fiber.f_arg List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: tarantool-patches@dev.tarantool.org On Tue, Nov 10, 2020 at 12:58:51AM +0100, Vladislav Shpilevoy wrote: > Struct fiber has a member va_list f_data. It is used to forward > arguments to the fiber function when fiber_start() is called, > right from the caller's stack. Ack