summaryrefslogtreecommitdiffstats
path: root/opencl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-08-12 16:53:48 +0300
committerTor Lillqvist <tml@collabora.com>2016-08-14 06:54:03 +0000
commit32881f01833dbcefd5600e1135dd8743178bfd96 (patch)
tree7adba5a0526fa23762c48cd21a8728737f67c6fc /opencl
parenttdf101291 Resize cropmarkers.png to requested dimension (diff)
downloadcore-32881f01833dbcefd5600e1135dd8743178bfd96.tar.gz
core-32881f01833dbcefd5600e1135dd8743178bfd96.zip
tdf#100965: Restart on initialisation-time OpenCL crash
Add a flag to the OpenCLZone indicating whether we are performing the first-start OpenCL functionality verification, so that if we run into a crash that is caught by the VCL VCLExceptionSignal_impl() handler, we terminate the process with the EXITHELPER_NORMAL_RESTART status after first having disabled OpenCL use. The wrapper process will then restart soffice.bin. This is for Windows only so far. This matches what we do if OpenGL fails early during start of LibreOffice. Change-Id: Ibb9bf3a86b7521bf16728de2a118ad4323be674b Reviewed-on: https://gerrit.libreoffice.org/28086 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'opencl')
-rw-r--r--opencl/source/OpenCLZone.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/opencl/source/OpenCLZone.cxx b/opencl/source/OpenCLZone.cxx
index 03521a29c66f..52d6ada8518a 100644
--- a/opencl/source/OpenCLZone.cxx
+++ b/opencl/source/OpenCLZone.cxx
@@ -21,6 +21,7 @@
sal_uInt64 volatile OpenCLZone::gnEnterCount = 0;
sal_uInt64 volatile OpenCLZone::gnLeaveCount = 0;
+bool volatile OpenCLZone::gbInInitialTest = false;
/**
* Called from a signal handler if we get
@@ -47,4 +48,9 @@ void OpenCLZone::hardDisable()
}
}
+void OpenCLZone::enterInitialTest()
+{
+ gbInInitialTest = true;
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */