From b5e338325beee318e243387b1514e0137b19b277 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 7 Jan 2022 08:52:33 -0800 Subject: [PATCH] Mark coroutine.close RFC as implemented (#304) --- rfcs/function-coroutine-close.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rfcs/function-coroutine-close.md b/rfcs/function-coroutine-close.md index 635050c4..6def1533 100644 --- a/rfcs/function-coroutine-close.md +++ b/rfcs/function-coroutine-close.md @@ -4,6 +4,8 @@ Add `coroutine.close` function from Lua 5.4 that takes a suspended coroutine and makes it "dead" (non-runnable). +**Status**: Implemented + ## Motivation When implementing various higher level objects on top of coroutines, such as promises, it can be useful to cancel the coroutine execution externally - when the caller is not