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
03824e45
Kaydet (Commit)
03824e45
authored
Ara 29, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #1040026: Fix os.times result on systems where HZ is incorrect.
üst
7af65568
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
9 deletions
+18
-9
NEWS
Misc/NEWS
+2
-0
posixmodule.c
Modules/posixmodule.c
+16
-9
No files found.
Misc/NEWS
Dosyayı görüntüle @
03824e45
...
...
@@ -246,6 +246,8 @@ C-API
Extension Modules
-----------------
- Issue #1040026: Fix os.times result on systems where HZ is incorrect.
- Issues #3167, #3682: Fix test_math failures for log, log10 on Solaris,
OpenBSD.
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
03824e45
...
...
@@ -5957,10 +5957,6 @@ posix_symlink(PyObject *self, PyObject *args)
#ifdef HAVE_TIMES
#ifndef HZ
#define HZ 60
/* Universal constant :-) */
#endif
/* HZ */
#if defined(PYCC_VACPP) && defined(PYOS_OS2)
static
long
system_uptime
(
void
)
...
...
@@ -5986,6 +5982,8 @@ posix_times(PyObject *self, PyObject *noargs)
(
double
)
system_uptime
()
/
1000
);
}
#else
/* not OS2 */
#define NEED_TICKS_PER_SECOND
static
long
ticks_per_second
=
-
1
;
static
PyObject
*
posix_times
(
PyObject
*
self
,
PyObject
*
noargs
)
{
...
...
@@ -5996,11 +5994,11 @@ posix_times(PyObject *self, PyObject *noargs)
if
(
c
==
(
clock_t
)
-
1
)
return
posix_error
();
return
Py_BuildValue
(
"ddddd"
,
(
double
)
t
.
tms_utime
/
HZ
,
(
double
)
t
.
tms_stime
/
HZ
,
(
double
)
t
.
tms_cutime
/
HZ
,
(
double
)
t
.
tms_cstime
/
HZ
,
(
double
)
c
/
HZ
);
(
double
)
t
.
tms_utime
/
ticks_per_second
,
(
double
)
t
.
tms_stime
/
ticks_per_second
,
(
double
)
t
.
tms_cutime
/
ticks_per_second
,
(
double
)
t
.
tms_cstime
/
ticks_per_second
,
(
double
)
c
/
ticks_per_second
);
}
#endif
/* not OS2 */
#endif
/* HAVE_TIMES */
...
...
@@ -8962,6 +8960,15 @@ INITFUNC(void)
statvfs_result_desc
.
name
=
MODNAME
".statvfs_result"
;
PyStructSequence_InitType
(
&
StatVFSResultType
,
&
statvfs_result_desc
);
#ifdef NEED_TICKS_PER_SECOND
# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
ticks_per_second
=
sysconf
(
_SC_CLK_TCK
);
# elif defined(HZ)
ticks_per_second
=
HZ
;
# else
ticks_per_second
=
60
;
/* magic fallback value; may be bogus */
# endif
#endif
}
Py_INCREF
((
PyObject
*
)
&
StatResultType
);
PyModule_AddObject
(
m
,
"stat_result"
,
(
PyObject
*
)
&
StatResultType
);
...
...
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