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
c0125471
Kaydet (Commit)
c0125471
authored
Haz 28, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added plock() system call.
Changed test for Windows times() emulation.
üst
cd6aab91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
posixmodule.c
Modules/posixmodule.c
+25
-1
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
c0125471
...
...
@@ -1060,6 +1060,27 @@ posix_kill(self, args)
}
#endif
#ifdef HAVE_PLOCK
#ifdef HAVE_SYS_LOCK_H
#include <sys/lock.h>
#endif
static
object
*
posix_plock
(
self
,
args
)
object
*
self
;
object
*
args
;
{
int
op
;
if
(
!
getargs
(
args
,
"i"
,
&
op
))
return
NULL
;
if
(
plock
(
op
)
==
-
1
)
return
posix_error
();
INCREF
(
None
);
return
None
;
}
#endif
#ifdef HAVE_POPEN
static
object
*
posix_popen
(
self
,
args
)
...
...
@@ -1220,7 +1241,7 @@ posix_times(self, args)
(
double
)
c
/
HZ
);
}
#endif
/* HAVE_TIMES */
#if defined(
MS_WIN32) && !defined(HAVE_TIMES)
#if defined(
_MSC_VER) && _MSC_VER > 850
#define HAVE_TIMES
/* so the method table will pick it up */
static
object
*
posix_times
(
self
,
args
)
...
...
@@ -1645,6 +1666,9 @@ static struct methodlist posix_methods[] = {
#ifdef HAVE_KILL
{
"kill"
,
posix_kill
},
#endif
/* HAVE_KILL */
#ifdef HAVE_PLOCK
{
"plock"
,
posix_plock
},
#endif
/* HAVE_PLOCK */
#ifdef HAVE_POPEN
{
"popen"
,
posix_popen
,
1
},
#endif
/* HAVE_POPEN */
...
...
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