From: Cyrill Gorcunov via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Serge Petrenko <sergepetrenko@tarantool.org> Cc: tml <tarantool-patches@dev.tarantool.org>, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v2 2/2] fiber: fiber_join -- don't crash on misuse Date: Wed, 28 Apr 2021 18:21:11 +0300 [thread overview] Message-ID: <YIl9Z24e3/bp/heG@grain> (raw) In-Reply-To: <dd8014f3-2071-e4bf-b1b2-1f9306d23976@tarantool.org> On Wed, Apr 28, 2021 at 06:13:30PM +0300, Serge Petrenko wrote: > Hi! Thanks for the patch! > Please find 2 comments below. Thanks! I've force pushed an update. --- test/app/fiber.result | 2 +- test/app/fiber.test.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/app/fiber.result b/test/app/fiber.result index d3a245428..b145302aa 100644 --- a/test/app/fiber.result +++ b/test/app/fiber.result @@ -1154,7 +1154,7 @@ end, 10); ch1 = fiber.channel(1); --- ... -f = fiber.new(function() while ch1:is_empty() do fiber.sleep(0) end end); +f = fiber.new(function() ch1:get() end); --- ... f:set_joinable(false); diff --git a/test/app/fiber.test.lua b/test/app/fiber.test.lua index 430e4ae96..9f25f7f9c 100644 --- a/test/app/fiber.test.lua +++ b/test/app/fiber.test.lua @@ -488,7 +488,7 @@ end, 10); -- gh-6046: make sure non joinable fiber fails ch1 = fiber.channel(1); -f = fiber.new(function() while ch1:is_empty() do fiber.sleep(0) end end); +f = fiber.new(function() ch1:get() end); f:set_joinable(false); _, errmsg = pcall(f.join, f); errmsg; -- 2.30.2
next prev parent reply other threads:[~2021-04-28 15:21 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-28 10:22 [Tarantool-patches] [PATCH v2 0/2] fiber: prevent fiber_join from misuse Cyrill Gorcunov via Tarantool-patches 2021-04-28 10:22 ` [Tarantool-patches] [PATCH v2 1/2] fiber: fiber_join -- drop redundat variable Cyrill Gorcunov via Tarantool-patches 2021-04-28 15:13 ` Serge Petrenko via Tarantool-patches 2021-04-28 10:22 ` [Tarantool-patches] [PATCH v2 2/2] fiber: fiber_join -- don't crash on misuse Cyrill Gorcunov via Tarantool-patches 2021-04-28 15:13 ` Serge Petrenko via Tarantool-patches 2021-04-28 15:21 ` Cyrill Gorcunov via Tarantool-patches [this message] 2021-04-28 15:34 ` Serge Petrenko via Tarantool-patches 2021-04-28 21:16 ` Vladislav Shpilevoy via Tarantool-patches 2021-04-28 22:12 ` Cyrill Gorcunov via Tarantool-patches 2021-04-29 11:10 ` [Tarantool-patches] [PATCH v3 " Cyrill Gorcunov via Tarantool-patches 2021-04-29 19:37 ` Vladislav Shpilevoy via Tarantool-patches 2021-04-29 20:39 ` Cyrill Gorcunov via Tarantool-patches 2021-04-29 21:10 ` Vladislav Shpilevoy via Tarantool-patches 2021-04-30 8:13 ` [Tarantool-patches] [PATCH v2 0/2] fiber: prevent fiber_join from misuse Kirill Yukhin via Tarantool-patches
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=YIl9Z24e3/bp/heG@grain \ --to=tarantool-patches@dev.tarantool.org \ --cc=gorcunov@gmail.com \ --cc=sergepetrenko@tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2 2/2] fiber: fiber_join -- don'\''t crash on misuse' \ /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