diff options
author | Himbeer <himbeer@disroot.org> | 2024-07-20 18:58:29 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-07-20 18:58:29 +0200 |
commit | 6d42cdc4fada152e13fbe663b473ec36504b792e (patch) | |
tree | 399218a8878d487932cdb672a700793b5bd67370 | |
parent | 212547d0d15cddb0a8e0d2cdabc87af902e7d5d3 (diff) |
Document new IsA{Hook,Container} errors in SRVRE kernel wiki
-rw-r--r-- | static/md/srvre/kernel/wiki/errors.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/static/md/srvre/kernel/wiki/errors.md b/static/md/srvre/kernel/wiki/errors.md index 80656d6..1c8ad4f 100644 --- a/static/md/srvre/kernel/wiki/errors.md +++ b/static/md/srvre/kernel/wiki/errors.md @@ -77,6 +77,8 @@ and user-friendly descriptions as well as some troubleshooting tips. | 55 | in_use | InUse | An inode cannot be modified or removed because it is currently referenced by at least one resource descriptor. Close all resource descriptors to it and try again. | | 56 | detached | Detached | The resource operation failed because the provider is terminated and the resource has not been reclaimed yet. You may (and usually should) retry the operation. | | 57 | orphaned | Orphaned | The resource operation failed because the provider is terminated and the resource cannot be reclaimed. The resource descriptor handle is closed after receiving this error. You may try to reopen the resource, but it is not guaranteed to exist anymore. | +| 58 | is_a_hook | IsAHook | The resource could not be opened because it is a hook. This error always originates from the kernel, most likely when trying to execute a path that is a hook instead of a readable resource kind. Ensure that you are using the correct path or report the issue to the program maintainer. | +| 59 | is_a_container | IsAContainer | The resource operation failed because it is a directory or directory hook rather than a functional resource. An example for a possible cause is trying to execute a path that is a directory. Ensure that you are using the correct path and that its resource kind and content are correct, or report the issue to the program maintainer. | | 2⁶⁴ - 1 = 18446744073709551615 | unknown | Unknown | An error that isn't listed above occured (e.g. a Zig standard library error). | [Return to Wiki Main Page](/md/srvre/kernel/wiki.md) |