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
a6a1e536
Kaydet (Commit)
a6a1e536
authored
Ock 10, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added bufsize parameter to fdopen and popen
üst
5524a59b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
posixmodule.c
Modules/posixmodule.c
+19
-10
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
a6a1e536
...
...
@@ -868,16 +868,22 @@ posix_popen(self, args)
object
*
self
;
object
*
args
;
{
char
*
name
,
*
mode
;
char
*
name
;
char
*
mode
=
"r"
;
int
bufsize
=
-
1
;
FILE
*
fp
;
if
(
!
getargs
(
args
,
"(ss)"
,
&
name
,
&
mode
))
object
*
f
;
if
(
!
newgetargs
(
args
,
"s|si"
,
&
name
,
&
mode
,
&
bufsize
))
return
NULL
;
BGN_SAVE
fp
=
popen
(
name
,
mode
);
END_SAVE
if
(
fp
==
NULL
)
return
posix_error
();
return
newopenfileobject
(
fp
,
name
,
mode
,
pclose
);
f
=
newopenfileobject
(
fp
,
name
,
mode
,
pclose
);
if
(
f
!=
NULL
)
setfilebufsize
(
f
,
bufsize
);
return
f
;
}
#ifdef HAVE_SETUID
...
...
@@ -1272,18 +1278,21 @@ posix_fdopen(self, args)
{
extern
int
fclose
PROTO
((
FILE
*
));
int
fd
;
char
*
mode
;
char
*
mode
=
"r"
;
int
bufsize
=
-
1
;
FILE
*
fp
;
if
(
!
getargs
(
args
,
"(is)"
,
&
fd
,
&
mode
))
object
*
f
;
if
(
!
newgetargs
(
args
,
"i|si"
,
&
fd
,
&
mode
,
&
bufsize
))
return
NULL
;
BGN_SAVE
fp
=
fdopen
(
fd
,
mode
);
END_SAVE
if
(
fp
==
NULL
)
return
posix_error
();
/* From now on, ignore SIGPIPE and let the error checking
do the work. */
return
newopenfileobject
(
fp
,
"(fdopen)"
,
mode
,
fclose
);
f
=
newopenfileobject
(
fp
,
"(fdopen)"
,
mode
,
fclose
);
if
(
f
!=
NULL
)
setfilebufsize
(
f
,
bufsize
);
return
f
;
}
static
object
*
...
...
@@ -1369,7 +1378,7 @@ static struct methodlist posix_methods[] = {
{
"getuid"
,
posix_getuid
},
{
"kill"
,
posix_kill
},
#endif
/* !NT */
{
"popen"
,
posix_popen
},
{
"popen"
,
posix_popen
,
1
},
#ifdef HAVE_SETUID
{
"setuid"
,
posix_setuid
},
#endif
/* HAVE_SETUID */
...
...
@@ -1405,7 +1414,7 @@ static struct methodlist posix_methods[] = {
{
"read"
,
posix_read
},
{
"write"
,
posix_write
},
{
"fstat"
,
posix_fstat
},
{
"fdopen"
,
posix_fdopen
},
{
"fdopen"
,
posix_fdopen
,
1
},
{
"pipe"
,
posix_pipe
},
{
NULL
,
NULL
}
/* Sentinel */
};
...
...
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