From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Return-Path: Date: Sat, 16 Mar 2019 00:12:11 +0300 From: Cyrill Gorcunov Subject: Re: [PATCH 2/2] lib/core/fiber: Relax stack memory usage on recycle Message-ID: <20190315211208.GD8197@uranus> References: <20190315205802.18847-1-gorcunov@gmail.com> <20190315205802.18847-3-gorcunov@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190315205802.18847-3-gorcunov@gmail.com> To: Vladimir Davydov Cc: tml List-ID: On Fri, Mar 15, 2019 at 11:58:02PM +0300, Cyrill Gorcunov wrote: > @@ -923,6 +1104,7 @@ cord_create(struct cord *cord, const char *name) > cord->sched.stack = NULL; > cord->sched.stack_size = 0; > #endif > + cord->sched.stack_shrink_wmark = NULL; This should be wrapped with ifdef too, will fix if there won't be more comments.