diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-03-29 00:36:41 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-03-29 00:36:41 -0700 |
commit | d689ac180ad47222aa59944d42c1e26e7b2423c6 (patch) | |
tree | 1a7d5b2a81ead70a7665984f643ca8ed61f9271f /subx | |
parent | 3365620f202a684322f7b68bc6822293c9b8b1a9 (diff) | |
download | mu-d689ac180ad47222aa59944d42c1e26e7b2423c6.tar.gz |
5032
Diffstat (limited to 'subx')
-rw-r--r-- | subx/Readme.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subx/Readme.md b/subx/Readme.md index 92e49d18..8970e97b 100644 --- a/subx/Readme.md +++ b/subx/Readme.md @@ -505,7 +505,8 @@ trace, or if you have questions or complaints. ### Data Structures -* Kernel strings: null-terminated arrays of bytes. +* Kernel strings: null-terminated arrays of bytes. Unsafe and to be avoided, + but needed for interacting with the kernel. * Strings: length-prefixed arrays of bytes. String contents are preceded by 4 bytes (32 bytes) containing the `length` of the array. |