This revision was automatically updated to reflect the committed changes. Closed by commit rG6947db2778e0: lldb: do more than 1 kilobyte at a time to vastly increase binary sync speed (authored by russelltg, committed by DavidSpickett).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D153060/new/ https://reviews.llvm.org/D153060 Files: lldb/source/Target/Platform.cpp Index: lldb/source/Target/Platform.cpp =================================================================== --- lldb/source/Target/Platform.cpp +++ lldb/source/Target/Platform.cpp @@ -1630,7 +1630,7 @@ return error; } - std::vector<char> buffer(1024); + std::vector<char> buffer(512 * 1024); auto offset = src_offset; uint64_t total_bytes_read = 0; while (total_bytes_read < src_size) {
Index: lldb/source/Target/Platform.cpp =================================================================== --- lldb/source/Target/Platform.cpp +++ lldb/source/Target/Platform.cpp @@ -1630,7 +1630,7 @@ return error; } - std::vector<char> buffer(1024); + std::vector<char> buffer(512 * 1024); auto offset = src_offset; uint64_t total_bytes_read = 0; while (total_bytes_read < src_size) {
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits