summaryrefslogtreecommitdiff
path: root/vcl/android
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-06-22 22:26:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-06-23 07:55:06 +0200
commit07295115f5742e0d06a21d280610903ad55a75f0 (patch)
treeeebb299f078cba1a624195c8e1b7aee196fd6937 /vcl/android
parent1eaf11278a2f2f81fbff774fef73f72a6b1a4efb (diff)
Revert "svp: don't directly yield in main thread"
This reverts commit d2de55c93f94bbccff51fa7715b613341f1f4ae6 for now, because it appears to have caused a massive uptick in hung UITest_impress_tests (sd/qa/uitest/impress_tests/save_readonly_with_password.py, line 95) and UITest_writer_test6 (sw/qa/uitest/writer_tests6/save_readonly_with_password.py, line 54) tests across Jenkins, see the comments starting at <https://gerrit.libreoffice.org/c/core/+/117900/8#message-e439f5f2b9ed7a24d6f47fd640defe14dc392eb5> "svp: don't directly yield in main thread". Change-Id: Id114a0d904580024352e4acf37e2558f9f0ae6f5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136250 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/android')
-rw-r--r--vcl/android/androidinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx
index 56497db19270..ca130fb1b19f 100644
--- a/vcl/android/androidinst.cxx
+++ b/vcl/android/androidinst.cxx
@@ -157,7 +157,7 @@ SalFrame *AndroidSalInstance::CreateFrame( SalFrame* pParent, SalFrameStyleFlags
extern "C" SalInstance *create_SalInstance()
{
LOGI("Android: create_SalInstance!");
- AndroidSalInstance* pInstance = new AndroidSalInstance( std::make_unique<SalYieldMutex>() );
+ AndroidSalInstance* pInstance = new AndroidSalInstance( std::make_unique<SvpSalYieldMutex>() );
new SvpSalData();
return pInstance;
}