[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - package/source sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Wed Dec 10 07:57:48 PST 2014
package/source/zippackage/ZipPackageStream.cxx | 2 ++
sc/source/filter/excel/xetable.cxx | 1 +
2 files changed, 3 insertions(+)
New commits:
commit d677bf455f08264096edd13e3306c55f74f7ee1d
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Wed Dec 10 10:51:01 2014 -0500
Globally disable threading for these for now.
It doesn't win us much performance-wise (as it turned out), and causes
weird crashers with large documents.
Change-Id: I0566ce850b8f6656e6f9821c653b7a825a7874a3
(cherry picked from commit e0425f9493e25fa14f11505d9ebc12a2fe78d4b6)
diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx
index 64b48d3..2c9562b 100644
--- a/package/source/zippackage/ZipPackageStream.cxx
+++ b/package/source/zippackage/ZipPackageStream.cxx
@@ -810,6 +810,8 @@ bool ZipPackageStream::saveChild(
if (xSeek.is() && xSeek->getLength() < 100000)
bParallelDeflate = false;
+ bParallelDeflate = false; // globally disable parallel deflate for now.
+
if (bParallelDeflate)
{
// Start a new thread deflating this zip entry
diff --git a/sc/source/filter/excel/xetable.cxx b/sc/source/filter/excel/xetable.cxx
index 66df5d6..84fdaec 100644
--- a/sc/source/filter/excel/xetable.cxx
+++ b/sc/source/filter/excel/xetable.cxx
@@ -2069,6 +2069,7 @@ void XclExpRowBuffer::Finalize( XclExpDefaultRowData& rDefRowData, const ScfUInt
// on its own data.
size_t nRows = maRowMap.size();
size_t nThreads = std::max( std::thread::hardware_concurrency(), 1U );
+ nThreads = 1; // globally disable multi-threading for now.
if ( nThreads == 1 || nRows < 128 )
{
RowMap::iterator itr, itrBeg = maRowMap.begin(), itrEnd = maRowMap.end();
More information about the Libreoffice-commits
mailing list