[compiler-rt] [scudo] Add `__scudo_get_info` symbol to export stats to a buffer. (PR #130273)

Christopher Ferris via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 12:19:51 PDT 2025


================
@@ -238,4 +238,14 @@ void Printf(const char *Format, ...) {
   va_end(Args);
 }
 
+size_t CopyToBuffer(const ScopedString &input, char *output_base,
----------------
cferris1000 wrote:

I think this might be better as a member function of ScopedString. The naming convention on that object is a bit odd, so it should probably be copyToBuffer.

https://github.com/llvm/llvm-project/pull/130273


More information about the llvm-commits mailing list