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
b3b45440
Kaydet (Commit)
b3b45440
authored
Mar 28, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22117: Use the _PyTime_t API for time.clock_settime()
Remove also the now unused _PyTime_AddDouble() function.
üst
c337838a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
27 deletions
+5
-27
pytime.h
Include/pytime.h
+0
-5
timemodule.c
Modules/timemodule.c
+5
-5
pytime.c
Python/pytime.c
+0
-17
No files found.
Include/pytime.h
Dosyayı görüntüle @
b3b45440
...
...
@@ -74,11 +74,6 @@ PyAPI_FUNC(int) _PyTime_ObjectToTimespec(
long
*
nsec
,
_PyTime_round_t
);
/* Add interval seconds to tv */
PyAPI_FUNC
(
void
)
_PyTime_AddDouble
(
_PyTime_timeval
*
tv
,
double
interval
,
_PyTime_round_t
round
);
/* Initialize time.
Return 0 on success, raise an exception and return -1 on error. */
PyAPI_FUNC
(
int
)
_PyTime_Init
(
void
);
...
...
Modules/timemodule.c
Dosyayı görüntüle @
b3b45440
...
...
@@ -166,18 +166,18 @@ time_clock_settime(PyObject *self, PyObject *args)
{
int
clk_id
;
PyObject
*
obj
;
time_t
tv_sec
;
long
tv_nsec
;
_PyTime_t
t
;
struct
timespec
tp
;
int
ret
;
if
(
!
PyArg_ParseTuple
(
args
,
"iO:clock_settime"
,
&
clk_id
,
&
obj
))
return
NULL
;
if
(
_PyTime_ObjectToTimespec
(
obj
,
&
tv_sec
,
&
tv_nsec
,
_PyTime_ROUND_DOWN
)
==
-
1
)
if
(
_PyTime_FromSecondsObject
(
&
t
,
obj
,
_PyTime_ROUND_DOWN
)
<
0
)
return
NULL
;
if
(
_PyTime_AsTimespec
(
t
,
&
tp
)
==
-
1
)
return
NULL
;
tp
.
tv_sec
=
tv_sec
;
tp
.
tv_nsec
=
tv_nsec
;
ret
=
clock_settime
((
clockid_t
)
clk_id
,
&
tp
);
if
(
ret
!=
0
)
{
...
...
Python/pytime.c
Dosyayı görüntüle @
b3b45440
...
...
@@ -251,23 +251,6 @@ _PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec,
return
_PyTime_ObjectToDenominator
(
obj
,
sec
,
usec
,
1e6
,
round
);
}
void
_PyTime_AddDouble
(
_PyTime_timeval
*
tv
,
double
interval
,
_PyTime_round_t
round
)
{
_PyTime_timeval
tv2
;
double
frac
;
frac
=
fmod
(
interval
,
1
.
0
);
interval
=
floor
(
interval
);
tv2
.
tv_sec
=
(
long
)
interval
;
tv2
.
tv_usec
=
(
long
)(
frac
*
1e6
);
tv
->
tv_sec
+=
tv2
.
tv_sec
;
tv
->
tv_usec
+=
tv2
.
tv_usec
;
tv
->
tv_sec
+=
(
time_t
)(
tv
->
tv_usec
/
SEC_TO_US
);
tv
->
tv_usec
%=
SEC_TO_US
;
}
/****************** NEW _PyTime_t API **********************/
static
void
...
...
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