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
961d061b
Kaydet (Commit)
961d061b
authored
Agu 22, 2014
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
set names on some UNIX-only threads
Change-Id: I4c247916256618312e7d98673d9db4d26e26fa39
üst
d386f887
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
0 deletions
+13
-0
mediator.cxx
extensions/source/plugin/unx/mediator.cxx
+2
-0
scanunx.cxx
extensions/source/scanner/scanunx.cxx
+2
-0
process.cxx
sal/osl/unx/process.cxx
+2
-0
X11_selection.cxx
vcl/unx/generic/dtrans/X11_selection.cxx
+1
-0
cupsmgr.cxx
vcl/unx/generic/printer/cupsmgr.cxx
+2
-0
UnxCommandThread.cxx
vcl/unx/kde/UnxCommandThread.cxx
+2
-0
UnxNotifyThread.cxx
vcl/unx/kde/UnxNotifyThread.cxx
+2
-0
No files found.
extensions/source/plugin/unx/mediator.cxx
Dosyayı görüntüle @
961d061b
...
@@ -196,6 +196,8 @@ MediatorListener::~MediatorListener()
...
@@ -196,6 +196,8 @@ MediatorListener::~MediatorListener()
void
MediatorListener
::
run
()
void
MediatorListener
::
run
()
{
{
osl_setThreadName
(
"MediatorListener"
);
bool
bRun
=
true
;
bool
bRun
=
true
;
while
(
schedule
()
&&
m_pMediator
&&
bRun
)
while
(
schedule
()
&&
m_pMediator
&&
bRun
)
{
{
...
...
extensions/source/scanner/scanunx.cxx
Dosyayı görüntüle @
961d061b
...
@@ -181,6 +181,8 @@ ScannerThread::~ScannerThread()
...
@@ -181,6 +181,8 @@ ScannerThread::~ScannerThread()
void
ScannerThread
::
run
()
void
ScannerThread
::
run
()
{
{
osl_setThreadName
(
"ScannerThread"
);
osl
::
MutexGuard
aGuard
(
m_pHolder
->
m_aProtector
);
osl
::
MutexGuard
aGuard
(
m_pHolder
->
m_aProtector
);
BitmapTransporter
*
pTransporter
=
new
BitmapTransporter
;
BitmapTransporter
*
pTransporter
=
new
BitmapTransporter
;
Reference
<
XInterface
>
aIf
(
static_cast
<
OWeakObject
*
>
(
pTransporter
)
);
Reference
<
XInterface
>
aIf
(
static_cast
<
OWeakObject
*
>
(
pTransporter
)
);
...
...
sal/osl/unx/process.cxx
Dosyayı görüntüle @
961d061b
...
@@ -190,6 +190,8 @@ extern "C" {
...
@@ -190,6 +190,8 @@ extern "C" {
static
void
ChildStatusProc
(
void
*
pData
)
static
void
ChildStatusProc
(
void
*
pData
)
{
{
osl_setThreadName
(
"osl_executeProcess"
);
pid_t
pid
=
-
1
;
pid_t
pid
=
-
1
;
int
status
=
0
;
int
status
=
0
;
int
channel
[
2
]
=
{
-
1
,
-
1
};
int
channel
[
2
]
=
{
-
1
,
-
1
};
...
...
vcl/unx/generic/dtrans/X11_selection.cxx
Dosyayı görüntüle @
961d061b
...
@@ -97,6 +97,7 @@ extern "C"
...
@@ -97,6 +97,7 @@ extern "C"
static
void
call_SelectionManager_runDragExecute
(
void
*
pMgr
)
static
void
call_SelectionManager_runDragExecute
(
void
*
pMgr
)
{
{
osl_setThreadName
(
"SelectionManager::runDragExecute()"
);
SelectionManager
::
runDragExecute
(
pMgr
);
SelectionManager
::
runDragExecute
(
pMgr
);
}
}
}
}
...
...
vcl/unx/generic/printer/cupsmgr.cxx
Dosyayı görüntüle @
961d061b
...
@@ -111,6 +111,7 @@ struct GetPPDAttribs
...
@@ -111,6 +111,7 @@ struct GetPPDAttribs
extern
"C"
{
extern
"C"
{
static
void
getPPDWorker
(
void
*
pData
)
static
void
getPPDWorker
(
void
*
pData
)
{
{
osl_setThreadName
(
"CUPSManager getPPDWorker"
);
GetPPDAttribs
*
pAttribs
=
(
GetPPDAttribs
*
)
pData
;
GetPPDAttribs
*
pAttribs
=
(
GetPPDAttribs
*
)
pData
;
pAttribs
->
executeCall
();
pAttribs
->
executeCall
();
}
}
...
@@ -172,6 +173,7 @@ extern "C"
...
@@ -172,6 +173,7 @@ extern "C"
{
{
static
void
run_dest_thread_stub
(
void
*
pThis
)
static
void
run_dest_thread_stub
(
void
*
pThis
)
{
{
osl_setThreadName
(
"CUPSManager cupsGetDests"
);
CUPSManager
::
runDestThread
(
pThis
);
CUPSManager
::
runDestThread
(
pThis
);
}
}
}
}
...
...
vcl/unx/kde/UnxCommandThread.cxx
Dosyayı görüntüle @
961d061b
...
@@ -103,6 +103,8 @@ uno::Any SAL_CALL UnxFilePickerCommandThread::getValue()
...
@@ -103,6 +103,8 @@ uno::Any SAL_CALL UnxFilePickerCommandThread::getValue()
void
SAL_CALL
UnxFilePickerCommandThread
::
run
()
void
SAL_CALL
UnxFilePickerCommandThread
::
run
()
{
{
osl_setThreadName
(
"UnxFilePickerCommandThread"
);
if
(
m_nReadFD
<
0
)
if
(
m_nReadFD
<
0
)
return
;
return
;
...
...
vcl/unx/kde/UnxNotifyThread.cxx
Dosyayı görüntüle @
961d061b
...
@@ -72,6 +72,8 @@ void SAL_CALL UnxFilePickerNotifyThread::fileSelectionChanged()
...
@@ -72,6 +72,8 @@ void SAL_CALL UnxFilePickerNotifyThread::fileSelectionChanged()
void
SAL_CALL
UnxFilePickerNotifyThread
::
run
()
void
SAL_CALL
UnxFilePickerNotifyThread
::
run
()
{
{
osl_setThreadName
(
"UnxFilePickerNotifyThread"
);
do
{
do
{
m_aNotifyCondition
.
reset
();
m_aNotifyCondition
.
reset
();
m_aNotifyCondition
.
wait
();
m_aNotifyCondition
.
wait
();
...
...
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