Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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ç
Batuhan Osman TASKAYA
cpython
Commits
aab9f46c
Kaydet (Commit)
aab9f46c
authored
Ara 26, 2015
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #25789: Improved buffering behaviour in launcher.
üst
f9253c96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
launcher.c
PC/launcher.c
+3
-2
No files found.
PC/launcher.c
Dosyayı görüntüle @
aab9f46c
...
@@ -98,7 +98,7 @@ error(int rc, wchar_t * format, ... )
...
@@ -98,7 +98,7 @@ error(int rc, wchar_t * format, ... )
MessageBox
(
NULL
,
message
,
TEXT
(
"Python Launcher is sorry to say ..."
),
MessageBox
(
NULL
,
message
,
TEXT
(
"Python Launcher is sorry to say ..."
),
MB_OK
);
MB_OK
);
#endif
#endif
ExitProcess
(
rc
);
exit
(
rc
);
}
}
/*
/*
...
@@ -652,7 +652,7 @@ run_child(wchar_t * cmdline)
...
@@ -652,7 +652,7 @@ run_child(wchar_t * cmdline)
if
(
!
ok
)
if
(
!
ok
)
error
(
RC_CREATE_PROCESS
,
L"Failed to get exit code of process"
);
error
(
RC_CREATE_PROCESS
,
L"Failed to get exit code of process"
);
debug
(
L"child process exit code: %d
\n
"
,
rc
);
debug
(
L"child process exit code: %d
\n
"
,
rc
);
ExitProcess
(
rc
);
exit
(
rc
);
}
}
static
void
static
void
...
@@ -1357,6 +1357,7 @@ process(int argc, wchar_t ** argv)
...
@@ -1357,6 +1357,7 @@ process(int argc, wchar_t ** argv)
wchar_t
*
av
[
2
];
wchar_t
*
av
[
2
];
#endif
#endif
setvbuf
(
stderr
,
(
char
*
)
NULL
,
_IONBF
,
0
);
wp
=
get_env
(
L"PYLAUNCH_DEBUG"
);
wp
=
get_env
(
L"PYLAUNCH_DEBUG"
);
if
((
wp
!=
NULL
)
&&
(
*
wp
!=
L'\0'
))
if
((
wp
!=
NULL
)
&&
(
*
wp
!=
L'\0'
))
log_fp
=
stderr
;
log_fp
=
stderr
;
...
...
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