From f90dbc7547f09a8c2cf2e8fe8083749251cfc5e7 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 7 Jan 2022 02:54:38 -0800 Subject: [PATCH] Mark coroutine.close RFC as implemented --- 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