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
dc7c582c
Kaydet (Commit)
dc7c582c
authored
Ara 17, 2010
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
oooimprovement7: #i116126# join logrotate thread upon terminate
üst
082cd85b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
onlogrotate_job.cxx
extensions/source/oooimprovement/onlogrotate_job.cxx
+12
-3
No files found.
extensions/source/oooimprovement/onlogrotate_job.cxx
Dosyayı görüntüle @
dc7c582c
...
...
@@ -158,16 +158,25 @@ namespace
m_Thread
->
create
();
}
virtual
~
OnLogRotateThreadWatcher
()
{
m_Thread
->
disposing
()
->
terminate
();
};
{
m_Thread
->
disposing
()
->
terminate
();
m_Thread
->
join
();
};
// XTerminateListener
virtual
void
SAL_CALL
queryTermination
(
const
EventObject
&
)
throw
(
RuntimeException
)
{
};
virtual
void
SAL_CALL
notifyTermination
(
const
EventObject
&
)
throw
(
RuntimeException
)
{
m_Thread
->
disposing
()
->
terminate
();
};
{
m_Thread
->
disposing
()
->
terminate
();
m_Thread
->
join
();
};
// XEventListener
virtual
void
SAL_CALL
disposing
(
const
EventObject
&
)
throw
(
RuntimeException
)
{
m_Thread
->
disposing
()
->
terminate
();
};
{
m_Thread
->
disposing
()
->
terminate
();
m_Thread
->
join
();
};
private
:
::
std
::
auto_ptr
<
OnLogRotateThread
>
m_Thread
;
};
...
...
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