This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients belopolsky, christian.heimes, gvanrossum, maltehelmert, pitrou, rbp
Date 2008-02-24.15:39:23
SpamBayes Score 0.10067611
Marked as misclassified No
Message-id <1203867564.8.0.00552436290157.issue1040026@psf.upfronthosting.co.za>
In-reply-to
Content
I suggest that you define "static int hz" and assign a value to the var
in INITFUNC().

#ifdef HZ
hz = HZ;
#elif defined(HAVE_SYSCONF)
hz = sysconf(_SC_CLK_TCK);
#else
hz = 60; /* It's 50Hz in Europe */
#endif
History
Date User Action Args
2008-02-24 15:39:24christian.heimessetspambayes_score: 0.100676 -> 0.10067611
recipients: + christian.heimes, gvanrossum, belopolsky, maltehelmert, pitrou, rbp
2008-02-24 15:39:24christian.heimessetspambayes_score: 0.100676 -> 0.100676
messageid: <1203867564.8.0.00552436290157.issue1040026@psf.upfronthosting.co.za>
2008-02-24 15:39:24christian.heimeslinkissue1040026 messages
2008-02-24 15:39:23christian.heimescreate