From 053ebf0a80bcd0b1fb5b3f5b2bb7b4398e5f6f8b Mon Sep 17 00:00:00 2001 From: RetricSu Date: Tue, 15 Oct 2024 10:35:29 +0800 Subject: [PATCH] fix(docs): update const error-code in syscall page (#468) * fix(docs): update const error-code in syscall page * chore: remove [ * apply review suggestion --- website/docs/script/syscalls_for_script.mdx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/website/docs/script/syscalls_for_script.mdx b/website/docs/script/syscalls_for_script.mdx index cada0018c..68086e360 100644 --- a/website/docs/script/syscalls_for_script.mdx +++ b/website/docs/script/syscalls_for_script.mdx @@ -48,13 +48,18 @@ A collection of CKB-VM syscalls. Also include relevant constant, such as return These are the return codes used by the CKB-VM syscalls. -| Const No. | C Example | Description | -| --------- | ---------------------- | ---------------------------------------------- | -| 0 | CKB_SUCCESS | No error. | -| 1 | CKB_INDEX_OUT_OF_BOUND | Index out of bound. (e.g. No such input Cell.) | -| 2 | CKB_ITEM_MISSING | The requested resource does not exist. | -| 3 | CKB_LENGTH_NOT_ENOUGH | The supplied memory buffer too small. | -| 4 | CKB_INVALID_DATA | The data provided is invalid. | +| Const No. | C Example | Description | +| --------- | ---------------------- | -------------------------------------------------------- | +| 0 | CKB_SUCCESS | No error. | +| 1 | CKB_INDEX_OUT_OF_BOUND | Index out of bounds (e.g., no such input Cell). | +| 2 | CKB_ITEM_MISSING | The requested resource does not exist. | +| 3 | CKB_LENGTH_NOT_ENOUGH | The supplied memory buffer is too small. | +| 4 | CKB_INVALID_DATA | The data provided is invalid. | +| 5 | CKB_WAIT_FAILURE | The file descriptor is invalid during syscall Wait. | +| 6 | CKB_INVALID_FD | The file descriptor is not owned by this process. | +| 7 | CKB_OTHER_END_CLOSED | The other end of the pipe is closed. | +| 8 | CKB_MAX_VMS_SPAWNED | The maximum count of spawned processes has been reached. | +| 9 | CKB_MAX_FDS_CREATED | The maximum count of created pipes has been reached. | ### Source