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
8e7997fe
Kaydet (Commit)
8e7997fe
authored
Eyl 30, 2016
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal: WNT: print errno when oslCreateThread fails
Change-Id: Iad0a2a7ba68b3f43c22e0b5a3cee646f8baba30e
üst
33a2e47c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
thread.c
sal/osl/w32/thread.c
+20
-0
No files found.
sal/osl/w32/thread.c
Dosyayı görüntüle @
8e7997fe
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#include <osl/time.h>
#include <osl/time.h>
#include <osl/interlck.h>
#include <osl/interlck.h>
#include <rtl/tencinfo.h>
#include <rtl/tencinfo.h>
#include <errno.h>
/*
/*
Thread-data structure hidden behind oslThread:
Thread-data structure hidden behind oslThread:
...
@@ -94,6 +95,25 @@ static oslThread oslCreateThread(oslWorkerFunction pWorker,
...
@@ -94,6 +95,25 @@ static oslThread oslCreateThread(oslWorkerFunction pWorker,
if
(
pThreadImpl
->
m_hThread
==
0
)
if
(
pThreadImpl
->
m_hThread
==
0
)
{
{
switch
(
errno
)
{
case
EAGAIN
:
fprintf
(
stderr
,
"_beginthreadex errno EAGAIN
\n
"
);
break
;
case
EINVAL
:
fprintf
(
stderr
,
"_beginthreadex errno EINVAL
\n
"
);
break
;
case
EACCES
:
fprintf
(
stderr
,
"_beginthreadex errno EACCES
\n
"
);
break
;
case
ENOMEM
:
fprintf
(
stderr
,
"_beginthreadex undocumented errno ENOMEM - this means not enough VM for stack
\n
"
);
break
;
default:
fprintf
(
stderr
,
"_beginthreadex unexpected errno %d
\n
"
,
errno
);
break
;
}
/* create failed */
/* create failed */
free
(
pThreadImpl
);
free
(
pThreadImpl
);
return
0
;
return
0
;
...
...
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