From 5c2418b552a2c369f995c97ea5f9955d81097faf Mon Sep 17 00:00:00 2001 From: utam0k Date: Tue, 21 Mar 2023 13:23:57 +0000 Subject: [PATCH] Add the all option to kill command Signed-off-by: utam0k --- runtime.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runtime.md b/runtime.md index 9b60d4660..49048e789 100644 --- a/runtime.md +++ b/runtime.md @@ -129,12 +129,16 @@ This operation MUST run the user-specified program as specified by [`process`](c This operation MUST generate an error if `process` was not set. ### Kill -`kill ` +`kill [OPTION] ` This operation MUST [generate an error](#errors) if it is not provided the container ID. Attempting to send a signal to a container that is neither [`created` nor `running`](#state) MUST have no effect on the container and MUST [generate an error](#errors). This operation MUST send the specified signal to the container process. +#### KillAll + +- `--all` Kill all the processes in the container. + ### Delete `delete `