1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
https://bugs.gentoo.org/981304
https://rt.cpan.org/Public/Bug/Display.html?id=158609
https://src.fedoraproject.org/rpms/perl-Coro/raw/rawhide/f/Coro-6.57-c23.patch
--- a/Coro/State.xs
+++ b/Coro/State.xs
@@ -156,7 +156,7 @@ static void *coro_thx;
# include <assert.h>
#endif
-static double (*nvtime)(); /* so why doesn't it take void? */
+static double (*nvtime)(pTHX); /* so why doesn't it take void? */
static void (*u2time)(pTHX_ UV ret[2]);
/* we hijack an hopefully unused CV flag for our purposes */
@@ -391,7 +391,7 @@ coro_u2time (pTHX_ UV ret[2])
}
ecb_inline double
-coro_nvtime (void)
+coro_nvtime (pTHX)
{
struct timeval tv;
gettimeofday (&tv, 0);
@@ -420,7 +420,7 @@ time_init (pTHX)
if (!svp) croak ("Time::HiRes is required, but missing. Caught");
if (!SvIOK (*svp)) croak ("Time::NVtime isn't a function pointer. Caught");
- nvtime = INT2PTR (double (*)(), SvIV (*svp));
+ nvtime = INT2PTR (double (*)(pTHX), SvIV (*svp));
svp = hv_fetch (PL_modglobal, "Time::U2time", 12, 0);
u2time = INT2PTR (void (*)(pTHX_ UV ret[2]), SvIV (*svp));
@@ -3031,7 +3031,7 @@ PerlIOCede_pushed (pTHX_ PerlIO *f, cons
PerlIOCede *self = PerlIOSelf (f, PerlIOCede);
self->every = SvCUR (arg) ? SvNV (arg) : 0.01;
- self->next = nvtime () + self->every;
+ self->next = nvtime (aTHX) + self->every;
return PerlIOBuf_pushed (aTHX_ f, mode, Nullsv, tab);
}
@@ -3048,7 +3048,7 @@ static IV
PerlIOCede_flush (pTHX_ PerlIO *f)
{
PerlIOCede *self = PerlIOSelf (f, PerlIOCede);
- double now = nvtime ();
+ double now = nvtime (aTHX);
if (now >= self->next)
{
|