diff options
author | Alexander Ziaee <concussious@runbox.com> | 2025-06-11 07:27:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-11 13:27:23 +0200 |
commit | 44a7ecd1d7485be94d3a92021c650175f100d2f7 (patch) | |
tree | 77d8fc34b7f6fa3cdd3949567aa55899861abe46 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | |
parent | 19b0e1227ca6653405e4a34627d04a14f2287f26 (diff) | |
download | llvm-44a7ecd1d7485be94d3a92021c650175f100d2f7.zip llvm-44a7ecd1d7485be94d3a92021c650175f100d2f7.tar.gz llvm-44a7ecd1d7485be94d3a92021c650175f100d2f7.tar.bz2 |
[doc] Use ISO nomenclature for 1024 byte units (#133148)
Increase specificity by using the correct unit sizes. KBytes is an
abbreviation for kB, 1000 bytes, and the hardware industry as well as
several operating systems have now switched to using 1000 byte kBs.
If this change is acceptable, sometimes GitHub mangles merges to use the
original email of the account. $dayjob asks contributions have my work
email. Thanks!
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 67ba42f..4a11172 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -1377,7 +1377,7 @@ GDBRemoteCommunicationServerCommon::GetModuleInfo(llvm::StringRef module_path, std::vector<std::string> GDBRemoteCommunicationServerCommon::HandleFeatures( const llvm::ArrayRef<llvm::StringRef> client_features) { - // 128KBytes is a reasonable max packet size--debugger can always use less. + // 128 KiB is a reasonable max packet size--debugger can always use less. constexpr uint32_t max_packet_size = 128 * 1024; // Features common to platform server and llgs. |