Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
69bb5e84
Kaydet (Commit)
69bb5e84
authored
Mar 11, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Thread safety
Change-Id: I13282ac1d6b3f1323e9056a4160301bd503ac271
üst
8db7c0de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
officeipcthread.cxx
desktop/source/app/officeipcthread.cxx
+7
-1
No files found.
desktop/source/app/officeipcthread.cxx
Dosyayı görüntüle @
69bb5e84
...
@@ -666,6 +666,7 @@ OfficeIPCThread::~OfficeIPCThread()
...
@@ -666,6 +666,7 @@ OfficeIPCThread::~OfficeIPCThread()
void
OfficeIPCThread
::
SetReady
()
void
OfficeIPCThread
::
SetReady
()
{
{
osl
::
MutexGuard
g
(
GetMutex
());
if
(
pGlobalOfficeIPCThread
.
is
())
if
(
pGlobalOfficeIPCThread
.
is
())
{
{
pGlobalOfficeIPCThread
->
cReady
.
set
();
pGlobalOfficeIPCThread
->
cReady
.
set
();
...
@@ -674,7 +675,11 @@ void OfficeIPCThread::SetReady()
...
@@ -674,7 +675,11 @@ void OfficeIPCThread::SetReady()
void
OfficeIPCThread
::
WaitForReady
()
void
OfficeIPCThread
::
WaitForReady
()
{
{
rtl
::
Reference
<
OfficeIPCThread
>
const
&
t
(
pGlobalOfficeIPCThread
);
rtl
::
Reference
<
OfficeIPCThread
>
t
;
{
osl
::
MutexGuard
g
(
GetMutex
());
t
=
pGlobalOfficeIPCThread
;
}
if
(
t
.
is
())
if
(
t
.
is
())
{
{
t
->
cReady
.
wait
();
t
->
cReady
.
wait
();
...
@@ -683,6 +688,7 @@ void OfficeIPCThread::WaitForReady()
...
@@ -683,6 +688,7 @@ void OfficeIPCThread::WaitForReady()
bool
OfficeIPCThread
::
IsEnabled
()
bool
OfficeIPCThread
::
IsEnabled
()
{
{
osl
::
MutexGuard
g
(
GetMutex
());
return
pGlobalOfficeIPCThread
.
is
();
return
pGlobalOfficeIPCThread
.
is
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment