summaryrefslogtreecommitdiffstats
path: root/desktop/source/app/officeipcthread.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-07-09 08:17:24 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-07-09 08:17:24 +0000
commit471ecc434560678e5ed9606ed11b7f1112b0fdac (patch)
tree766f9f837ed8ae6a2a7005b1de07c05d13371d65 /desktop/source/app/officeipcthread.hxx
parentINTEGRATION: CWS sw020 (1.33.2); FILE MERGED (diff)
downloadcore-471ecc434560678e5ed9606ed11b7f1112b0fdac.tar.gz
core-471ecc434560678e5ed9606ed11b7f1112b0fdac.zip
INTEGRATION: CWS sw020 (1.12.46); FILE MERGED
2003/07/01 15:26:32 lo 1.12.46.1: #i16270# prevent deletion of condition thread is waiting on
Diffstat (limited to 'desktop/source/app/officeipcthread.hxx')
-rw-r--r--desktop/source/app/officeipcthread.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop/source/app/officeipcthread.hxx b/desktop/source/app/officeipcthread.hxx
index 778620ed53a5..b88aa084d6a3 100644
--- a/desktop/source/app/officeipcthread.hxx
+++ b/desktop/source/app/officeipcthread.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: officeipcthread.hxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: vg $ $Date: 2003-05-16 14:22:30 $
+ * last change: $Author: vg $ $Date: 2003-07-09 09:17:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -111,7 +111,7 @@ struct ProcessDocumentsRequest
::rtl::OUString aForceNewList; // Documents that should be forced to create a new document
::rtl::OUString aPrinterName; // The printer name that should be used for printing
::rtl::OUString aPrintToList; // Documents that should be printed on the given printer
- ::osl::Condition cProcessed; // condition to be set when the request has been processed
+ ::osl::Condition *pcProcessed; // pointer condition to be set when the request has been processed
};
class DispatchWatcher;
@@ -129,6 +129,7 @@ class OfficeIPCThread : public vos::OThread
int mnPendingRequests;
DispatchWatcher* mpDispatchWatcher;
sal_Bool mbShutdownInProgress;
+ ::osl::Condition cProcessed; // condition to be set when the request has been processed
static ::osl::Mutex& GetMutex();
static const char *sc_aTerminationSequence;