diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2016-12-01 11:14:24 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-12-01 18:44:08 +0000 |
commit | aa68c99d88fd7abe08c4aee5206c859a0cdba38e (patch) | |
tree | 6bc2054a2d16799e1effe6e817455f4b8821843c /package | |
parent | 0afbe8d5ca17c4e24bb49272dc6711925f82f5d5 (diff) |
tdf#104126 - comphelper thread-pool, use reliable std::condition_variable.
The existing osl::Condition is an API and reliability disaster area.
Change-Id: I3be84e1c6a83e58c43c40c9c8720790d923a6694
Reviewed-on: https://gerrit.libreoffice.org/31163
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zipapi/ZipOutputStream.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index 603a61423eb4..d0fce8951ed9 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -27,6 +27,7 @@ #include <osl/diagnose.h> #include <osl/time.h> +#include <osl/thread.hxx> #include <PackageConstants.hxx> #include <ZipEntry.hxx> |