Upgrade to Time-HiRes-1.93.
[p5sagit/p5-mst-13.2.git] / ext / Time / HiRes / Changes
CommitLineData
75d5269b 1Revision history for the Perl extension Time::HiRes.
dcf686c9 2
c09e847b 31.93 [2006-10-15]
4 - the ualarm() tests (34-37) assumed that ualarm(N)
5 could never alarm in less than N seconds, widened
6 the acceptable relative range to 0.9..1.5. Addresses
7 [rt.cpan.org #22090] and [rt.cpan.org #22091].
8
9 - skip the stat() tests in cygwin and win32, because
10 if run on FAT the timestamp granularity is only 2 seconds.
11 Any good way to detect (cygwin or win32) whether we are
12 being run on NTFS or anyplace with better timestamps?
13 Addresses [rt.cpan.org #22089] and [rt.cpan.org #22098].
14
75d5269b 151.92 [2006-10-13]
16 - scan for subsecond resolution timestamps in struct stat,
17 some known possibilities:
18
19 (1) struct timespec st_atimespec;
20 st_atimespec.tv_nsec;
21 (2) time_t st_atime;
22 long st_atimensec;
23 (3) time_t st_atime;
24 int st_atime_n;
25 (4) timestruc_t st_atim;
26 st_atim.tv_nsec
27 (5) time_t st_atime;
28 int st_uatime;
29
30 If something like this is found, one can do
31
32 use Time::HiRes;
33 my @stat = Time::HiRes::stat();
34
35 or even override the standard stat():
36
37 use Time::HiRes qw(stat);
38
39 to get the stat() timestamps
40
41 my ($atime, $mtime, $ctime) = @stat[8, 9, 10];
42
43 with subsecond resolution (assuming both the operating
44 system and the filesystem support that kind of thing).
45
46 Contributions for more systems (especially non-UNIX,
47 e.g. but not limited to, Win32, VMS) gladly accepted.
48
49 Thanks to H.Merijn Brand, John Peacock, and Craig
50 Berry for brave beta testing.
51
521.91 [2006-09-29]
34f69483 53 - ualarm() in SuSE 10.1 was overflowing after ~4.2 seconds,
75d5269b 54 possibly due to a glibc bug/feature, workaround by using the
55 setitimer() implementation of ualarm() if either useconds or
56 interval > 999_999 (this case seems to vary between systems:
57 are useconds more than 999_999 for ualarm() defined or not)
58 Added more ualarm() tests to catch various overflow points,
59 hopefully no problems in various platforms.
60 (The problem report by Mark Seger and Jon Paul Sullivan of HP.)
34f69483 61
f445b110 621.90 [2006-08-22]
63 - tweak still needed for Const64(), from Jerry Hedden
64 - get a freshly generated ppport.h
65 - update Copyright years
66
b69b1b83 671.89 [2006-08-22]
68 - Const64() already appends an 'LL' (or i64), so provide LL and i64
f445b110 69 forms for the IV_1E[679] (effects Win32 and Cygwin), reported by
70 Jerry Hedden.
75d5269b 71 - the Changes entry for 1.88 talked about [IN]V_1[679],
72 missing the 'E'.
b69b1b83 73
47e797f6 741.88 [2006-08-21]
75 - clean up the g++ warnings in HiRes.xs, all of them
76 about mixing integer and floating point, introduce
b69b1b83 77 constants IV_1E[679] and NV_1E[679]
47e797f6 78
9b15102a 791.87 [2006-02-13]
80 - [rt.cpan.org #17442] 'make test' frequently fails under
81 Cygwin Perl v5.8.8, reported and patched by J. R. Hedden
82 (two race condition bugs in the END block in the case the
83 main process dies before the timer process, unearthed
84 by a bug in Cygwin ualarm)
85
ff7df920 861.86 [2005-12-17]
87 - HiRes.t:s/ok 32/ok 33/, from Dominic Dunlop
88 - tighten up the clock() test marginally by requiring non-negative
89 - clock_nanosleep() and clock() doc tweaks
90
170c5524 911.85 [2005-12-16]
92 - the interface to clock_nanosleep() is more natural
93 when it is like (hires) time() (instead of like nanosleep),
94 and the .xs implementation of clock_nanosleep() in 1.84
95 was broken anyway
96 - the semantics of clock() are not quite so silly as I thought,
97 but still somewhat odd, documented as such
98 - additional enhancements to the clock() documentation
99 - add test for clock_nanosleep() (I cannot test this
100 since none of my systems have the function)
101 - add test for clock()
102
1031.84 [2005-12-16]
104 - add clock() which returns the processor time in
105 (floating point) seconds since an arbitrary era
106 - add clock_nanosleep() which suspends the current
107 thread until either absolute time or for relative time
108 - [rt.cpan.org #16486] printf missing value in HiRes.t
109 - add constants CLOCKS_PER_SEC, CLOCK_SOFTTIME, TIMER_ABSTIME
110 - tiny typo fixes
111
a5929ff3 1121.83 [2005-11-19]
113 - has_symbol() was wrong since e.g. ITIMER_VIRTUAL is exported
114 via @EXPORT_OK even when it is not available. This is heinous.
115 @EXPORT_OK should be determined at Makefile.PL time.
116 - be more lenient is testing clock_gettime(): allow more slop,
117 and retry up to three times, sleeping a random nap between
118 the retries
119 - human months are one-based (noticed by Anton Berezin)
120
82cbdcc3 1211.82 [2005-10-06]
122 - CLOCK_REALTIME is an enum value (of the clockid_t enum)
123 in HP-UX (and might be so elsewhere, too), debugged by
124 H. Merijn Brand
125 - include const-c.inc as late as possible (from Randy Kobes,
126 [rt.cpan.org #15552] to avoid undefined usleep() on Win32
127
a5929ff3 1281.81 [2005-11-05]
b311af62 129 - try to be more robust and consistent in the detection of
130 CLOCK_REALTIME and ITIMER_VIRTUAL in HiRes.t: the proper
131 way is
132
133 sub has_symbol {
134 my $symbol = shift;
135 eval 'import Time::HiRes qw($symbol)';
136 return 0 unless $@ eq '';
137 return exists ${"Time::HiRes::$symbol"};
138 }
139
140 and then use
141
142 &FOO_BAR
143
144 in the test. All these moves are needed because
145
146 1) one cannot directly do eval 'Time::HiRes::FOO_BAR'
147 because FOO_BAR might have a true value of zero
148 (or in the general case an empty string or even undef)
149
150 2) In case FOO_BAR is not available in this platform,
151 &FOO_BAR avoids the bareword warning
152
153 - wait more (1.5 seconds instead of 0.1) for the CLOCK_REALTIME test
154 but expect the 'customary' slop of 0.20 instead of 0.25
155 - fixed inside a comment HAS_POLL -> TIME_HIRES_NANOSLEEP
156 - at the end of HiRest.t tell how close we were to termination
157
a5929ff3 1581.80 [2005-11-04]
70cf0185 159 - Gisle noticed a mistake (using HAS_NANOSLEEP) in 1.79
160
a5929ff3 1611.79 [2005-11-03]
e5433ad8 162 - try nanosleep for emulating usleep -- may help in some weird
163 embedded realtime places which have nanosleep but neither usleep
164 nor select nor poll (doesn't have to be weird embedded realtime
165 place, though -- in many places usleep is nanosleep anyway)
166 - try poll for emulating usleep -- this may help some obscure/old
167 SVR4 places that have neither usleep nor select
168 - a redundant test guard in HiRes.t
169
a5929ff3 1701.78 [2005-11-03]
1a7d3a53 171 - ITIMER_VIRTUAL detection in HiRes.t had problems (that we cannot
e5433ad8 172 in the general case fail already at 'use' phase is suboptimal)
1a7d3a53 173 - fixes to the documentation of clock_gettime() and clock_getres()
174
a5929ff3 1751.77 [2005-11-03]
ced84e60 176 - add support for the POSIX clock_gettime() and clock_getres(),
177 if available, either as library calls or as syscalls
178 - be more defensive about missing functionality: break out
179 early (during 'use') if no e.g. clock_getres() is available,
180 and protect our back by trapping those cases also in HiRes.xs
181 - the test added in 1.76 could cause an endless loop e.g. in Solaris,
182 due to mixing of sleep() and alarm() (bad programmer, no cookie!)
183
3d0346a5 1841.76 [2005-10-22]
185 - testing for nanosleep had wrong logic which caused nanosleep
186 to become undefined for e.g. Mac OS X
187 - added a test for a core dump that was introduced by Perl 5.8.0
188 safe signals and was fixed for the time of 5.8.1 (one report of
189 the core dump was [perl #20920]), the test skipped pre-5.8.1.
190 - *cough* s/unanosleep/nanosleep/g; *cough*
191
9649b81b 1921.75 [2005-10-18]
193 - installation patch from Gisle Aas: in Perls 5.8.x and later
194 use MakeMaker INSTALLDIRS value of 'perl' instead of 'site'.
195
06252d99 1961.74 [2005-09-19]
197 - [cpan #14608] Solaris 8 perl 5.005_03 File::Spec module does not have method rel2abs
198 (the workaround is not to use rel2abs, should not be necessary)
199 - [cpan #14642] U2time wrongly exported on the C API
200 (patch supplied by the reporter, SALVA@cpan.org)
201 - add release dates to Changes
202
2031.73 [2005-08-16]
204 - Time::HiRes::nanosleep support for Solaris [PATCH]
937b804e 205 (POSIX::uname() not available if building with core perl,
206 from Gisle Aas, via perl5-porters, perl change #25295)
207
06252d99 2081.72 [2005-07-01]
209 - going back to the 1.68 loader setup (using DynaLoader)
0cf8ddea 210 since too many weird things starting breaking
211 - fix a typo in José Auguste-Etienne's name
212
06252d99 2131.71 [2005-06-28]
214 - a thinko in the nanosleep() detection
56c1b3bd 215 - move more changes stuff from the README to Changes
216 - add -w to the Makefile.PL
217
06252d99 2181.70 [2005-06-26]
219 - oops in 1.69 about @ISA (not affecting anything but silly)
f8daf111 220 - add copyright 2005 to HiRes.pm
221 - add copyright and license to HiRes.xs
56c1b3bd 222 - add copyrights 2003, 2004, 2005 to README
f8daf111 223
06252d99 2241.69 [2005-06-25]
225 - actually run a test for nanosleep
56c1b3bd 226 (if there is no $Config{d_nanosleep}) since e.g. in AIX 4.2
26e22fd9 227 it seems that one can link in nanosleep() but then calling
228 it fails instantly and sets errno to ENOSYS (Not implemented).
229 This may be fixable in the AIX case by figuring out the right
230 (realtime POSIX?) libs and whatnot, but in the general case
231 running a real test case is better. (Of course, this change
232 will no doubt run into portability problems because of the
0cf8ddea 233 execution step...) Note that because of hysterical raisins
234 most Perls do NOT have $Config{d_nanosleep} (scanning for
235 it by Configure would in many platforms require linking in
236 things like -lrt, which would in many platforms be a bad idea
237 for Perl itself).
238 (from José Auguste-Etienne)
26e22fd9 239 - support XSLoader also since it's much faster
240 (from Alexey Tourbin)
241 - add SEE ALSO (BSD::Resource and Time::TAI64)
242
06252d99 2431.68 [2005-05-14]
993164ab 244 - somehow 1.67 had a lot of doubled lines (a major cut-and-paste
245 error suspected), but miraculously it still worked since the
246 doubling took place below the __END__ token
247 - undef Pause() before defining it to avoid redefinition warnings
248 during compilation in case perl.h had already defined Pause()
249 (part of perl change #24271)
250 - minor doc tweaks
251
06252d99 2521.67 [2005-05-04]
993164ab 253 - (internal) don't ignore the return value of gettimeofday()
254 - (external) return undef or an empty if the C gettimeofday() fails
255 (affects Time::HiRes gettimeofday() and the hires time())
256
06252d99 2571.66 [2004-12-19]
44d3ce20 258 - add nanosleep()
259 - fix the 'hierachy' typo in Makefile.PL [rt.cpan.org #8492]
260 - should now build in Solaris [rt.cpan.org #7165] (since 1.64)
261 - should now build in Cygwin [rt.cpan.org #7535] (since 1.64)
82cbdcc3 262 - close also [rt.cpan.org #5933] "Time::HiRes::time does not
263 pick up time adjustments like ntp" since ever reproducing it
264 (and therefore verifying a possible fix) in the same environment
44d3ce20 265 has become rather unlikely
266
06252d99 2671.65 [2004-09-18]
64a7a97c 268 - one should not mix u?alarm and sleep (the tests modified
269 by 1.65, #12 and #13, hung in Solaris), now we just busy
270 loop executing an empty block
271 - in the documentation underline the unspecificity of mixing
272 sleeps and alarms
273 - small spelling fixes
274
06252d99 2751.64 [2004-09-16]
64a7a97c 276 - regenerate ppport.h with Devel::PPPort 3.03,
277 now the MY_CXT_CLONE is defined in ppport.h,
278 we no more need to do that.
279
280 - the test #12 would often hang in sigsuspend() (at least that's
281 where Mac OS X' ktrace shows it hanging). With the sleep()s
282 changed to sleep(1)s, the tests still pass but no hang after
283 a few hundred repeats.
284
06252d99 2851.63 [2004-09-01]
1fbb4de4 286 - Win32 and any ithread build: ppport.h didn't define
170c5524 287 MY_CXT_CLONE, which seems to be a Time-HiRes-ism.
1fbb4de4 288
06252d99 2891.62 [2004-08-31]
1fbb4de4 290 - Skip testing if under PERL_CORE and Time::HiRes has not
291 been Configured (from Marcus Holland-Moritz, core change
292 #23246)
293 - Use ppport.h generated by Devel::PPPort 3.01,
294 allowing cutting away our own portability code.
295 - Don't use $ENV{PERL_CORE} for < 5.6.0.
296 - Don't use "for my $i" for <= 5.003.
297 - Don't use Pause() for <= 5.003.
298 - Can't use newSVpvf for <= 5.003.
299 (most of the changes from Marcus)
300
06252d99 3011.61 [2004-08-21]
4ed0e2d4 302 - Win32: reset reading from the performance counters every
303 five minutes to better track wall clock time (thanks to
304 PC timers being often quite bad), should help long-running
305 programs.
306
06252d99 3071.60 [2004-08-15]
4ed0e2d4 308 - Win32: Patch from Steve Hay
309 [PATCH] Re: [perl #30755] [Win32] Different results from Time::HiRes::gettimeofdayunder the debugger
310 to [perl #30755] reported by Nigel Sandever
311
312 - Cygwin: Use the Win32 recalibration code also in Cygwin if the
313 <w32api/windows.h> APIs are available. Cygwin testing by
314 Yitzchak Scott-Thoennes.
315
316 - Solaris: use -lposix4 to get nanosleep for Solaris 2.6,
317 after that keep using -lrt, patch from Alan Burlison,
318 bug reported in [cpan #7165]
319
06252d99 3201.59 [2004-04-08]
d8cb5b61 321 - Change the Win32 recalibration limit to 0.5 seconds and tweak
322 the documentation to blather less about the gory details of the
323 Win32 implementation and more about the complications in general
324 of meddling with the system clock.
325
06252d99 3261.58 [2004-04-08]
d8cb5b61 327 - Document the 1.57 change better.
328
06252d99 3291.57 [2004-07-04]
d8cb5b61 330 - Win32/Cygwin/MinGW: if the performance counter drifts by more
331 than two seconds from the system clock (due to ntp adjustments,
c1dc6e7c 332 for example), recalibrate our internal counter: from Jan Dubois,
333 based on [cpan #5933] by Jerry D. Hedden.
334
06252d99 3351.56 [2004-29-02]
1caec985 336 - Give a clearer message if the tests timeout (perl change #22253)
337 - Don't use /tmp or its moral equivalents (perl bug #15036,
338 perl change #22258)
339
06252d99 3401.55 [2004-01-14]
4ed0e2d4 341 - Windows: mingw32 patch from Mike Pomraning (use Perl's Const64()
b6136f41 342 instead of VC-specific i64 suffix)
343
06252d99 3441.54 [2003-12-31]
0225372c 345 - Solaris: like Tru64 (dec_osf) also Solaris need -lrt for nanosleep
346
06252d99 3471.53 [2003-12-30]
0225372c 348 - Windows: higher resolution time() by using the Windows
349 performance counter API, from Jan Dubois and Anton Shcherbinin.
350 The exact new higher resolution depends on the hardware,
351 but it should be quite a bit better than using the basic
352 Windows timers.
353
06252d99 3541.52 [2003-10-28]
690f7c5f 355 - In AIX (v?) with perl 5.6.1 the HiRes.t can hang after
356 the subtest 18. No known analysis nor fix, but added
357 an alarm (that requires fork() and alarm()) to the test.
358
06252d99 3591.51 [2003-09-22]
b85af263 360 - doc tweaks from mjd (perl change #20456)
361 - NCR MP-RAS hints file added (svr4.pl) (perl change #21249)
362
06252d99 3631.50 [2003-08-02]
d7358e6a 364 - add a message (for non-core builds) to Makefile.PL about
365 the LC_ALL=C workaround
366 - &Time::HiRes::d_nanosleep was broken (perl change #20131)
367 - the nanosleep() probe was broken (perl change #20061)
368 - use existence instead of definedness for feature probes
369 (perl change #20043)
370 - MPE/iX tweak (perl change #20042)
371 - do not use HAS_NANOSLEEP (perl change #19898)
372
06252d99 3731.49 [2003-06-23]
df16a331 374 - UVuf for non-IVSIZE platforms (from Keiichiro Nagano)
375 - OS/2 can always mix subsecond sleeps with signals
376 (part of perl change #19789)
377
06252d99 3781.48 [2003-06-04]
2d9815af 379 - workaround for buggy gcc 2.95.3 in openbsd/sparc64
380 (perl change #19592)
381
06252d99 3821.47 [2003-05-03]
2d9815af 383 - do not use -lrt in Linux (from March Lehmann, perl change #19449)
1a08a6ab 384 - unnecessary (nanosleep is in libc anyway)
385 - harmful (-lrt slows down execution)
386 - incompatible (with many distributions' pthreads)
387
06252d99 3881.46 [2003-04-25]
25ca0970 389 - do not create files in blib directories under core
390 (perl change #19160, from rgs)
391 - detypo s/VTLARM/VTARLM/ (perl change #19328, from mjd)
392
06252d99 3931.45 [2003-04-01]
25ca0970 394 - guarantee that $xdefine in HiRes.t is always defined
395 (perl change #19109, from IlyaZ)
396 - a cleaner way to detect PERL_CORE (perl change #19111,
397 from IlyaZ)
398
06252d99 3991.44 [2003-03-30]
0be47ac6 400 - add hints/irix.pl to turn off overly POSIX flags that
401 cause hide struct timespec to be hidden (and compilation
25ca0970 402 to fail) (bleadperl change #19085)
0be47ac6 403 - documentation tweaks
404
06252d99 4051.43 [2003-03-11]
a0c8e3cf 406 - add c:/temp to the list of temp directories to probe
407 so that cygwin (and win*?) builds are happy. This was
408 needed at least in my cygwin 1.3.20/w2k setup.
409
06252d99 4101.42 [2003-01-07]
98b50af3 411 - modernize the constants code (from Nicholas Clark)
412
06252d99 4131.41 [2003-01-03]
98b50af3 414 - At some point the ability to figure our the correct incdir
415 for EXTERN.h (either a core perl build, or an installed perl)
416 had broken (which lead into all test compiles failing with
417 a core perl build, but thanks to the robustness of Makefile.PL
a0c8e3cf 418 nothing of this was visible). The brokenness seemed to be
419 caused by $ENV{PERL_CORE} not being on for core builds?
420 Now stole a trick from the Encode that sets $ENV{PERL_CORE}
421 right, and both styles of build should work again.
98b50af3 422
06252d99 4231.40 [2003-01-03]
98b50af3 424 - Nicholas Clark noticed that the my_catdir() emulation function
425 was broken (which means that we didn't really work for Perls
426 5.002 and 5.003)
427 - inspired by fixing the above made the whole Makefile.PL -w
428 and strict clean
429 - tightened up the Makefile.PL output, less whitespace
430
06252d99 4311.39 [2003-10-20]
6a20eacc 432 - fix from Craig Berry for better building in VMS with PERL_CORE
433
06252d99 4341.38 [2003-10-13]
3f2ee006 435 - no functional changes
436 - move lib/Time/HiRes.pm as Hires.pm
437 - libraries scanning was slightly broken (always scanned
438 for a library even when $Config{libs} already had it)
439
06252d99 4401.37 [2003-09-23]
3f2ee006 441 - Ray Zimmerman ran into a race condition in Mac OS X.
442 A 0.01-second alarm fired before the test expected.
443 The test first slept indefinitely (blocking for signals)
444 and only after that tested for the signal having been sent.
445 Since the signal had already been sent, the test #12 never
446 completed. The solution: test first, then block.
447 - default to being silent on all probing attempts, set the
448 environment variable VERBOSE to a true value to see the
449 details (the probing command and the possible errors)
450
06252d99 4511.36 [2003-09-12]
3f2ee006 452 - do not clear MAN3PODS in Makefile.PL (Radoslaw Zielinski)
453 - INSTALLDIRS => 'perl' missing which means that Time::HiRes
454 cannot be upgraded from CPAN to override the 5.8.0 version
455 (Guido A. Ostkamp)
456 - Time::HiRes 1.35 could not be dropped as-is to bleadperl
457 because the include directories did not adjust themselves
458 if $ENV{PERL_CORE} (Hugo van der Sanden)
459 - add documentation about the restart of select() under alarm()
460
06252d99 4611.35 [2003-08-24]
3f2ee006 462 - small documentation tweaks
463
464
06252d99 4651.34 [2003-08-22]
3f2ee006 466 - better VMS operation (Craig Berry)
467
06252d99 4681.33 [2003-08-20]
3f2ee006 469 - our time machine is accelerating: now works with Perl 5.004_01
470 (tried with 5.003_07 and 5.002 but I get segmentation faults
471 from running the Makefile.PL with those in Tru64 4.0D)
472
06252d99 4731.32 [2003-08-20]
3f2ee006 474 - backward compatibility (pre-5.6.0) tweaks:
475 - no XSLoader in 5.00503, use DynaLoader instead
476 - no SvPV_nolen, either
477 - no PerlProc_pause(), either
478 - now tested with 5.00404 and 5.00503
479 - Makefile.PL requires 5.00404 (no more 5.002)
480 - use nanosleep instead of usleep, if it is available (Wilson Snyder)
481 (this means that one can mix subsecond sleeps with alarms)
482 - because of nanosleep we probe for -lrt and -lposix4
483 - the existence of getitimer/nanosleep/setitimer/ualarm/usleep
484 is available by exportable constants Time::HiRes::d_func
485 (since older Perl do not have them in %Config, and even
486 5.8.0 does not probe for nanosleep)
487
06252d99 4881.31 [2003-08-19]
3f2ee006 489 - backward compatibility (pre-5.6.1) tweaks:
490 - define NV if no NVTYPE
491 - define IVdf if needed (note: the Devel::PPPort
492 in 5.8.0 does not try hard hard enough since
493 the IVSIZE might not be defined)
494 - define NVgf if needed
495 - grab the typemap from 5.8.0 for the NV stuff
56c1b3bd 496
497 1.31 and 1.32 add more backward compatibility (now all the way
498 back to Perl 5.00404), and using nanosleep() (if available) for
499 subsecond sleeps.
500
06252d99 5011.30 [2003-08-16]
3f2ee006 502
503 - release 1.29_02 as 1.30
504
56c1b3bd 505 1.30 adds all the changes made during the Perl 5.6->5.7->5.8
506 development cycle. Most notably portability across platforms has been
507 enhanced, and the interval timers (setitimer, getitimer) have been
508 added. Note that the version of Time::HiRes that is included in Perl
509 5.8.0 calls itself 1.20_00, but it is equivalent to this Time::HiRes
510 version. Note also that in 1.30 Wegscheid turns over the maintenance
511 to Jarkko Hietaniemi.
512
06252d99 5131.29_02 [2003-08-16]
3f2ee006 514
515 - fix a silly unclosed comment typo in HiRes.xs
516 - document and export REALTIME_REALPROF (Solaris)
517
06252d99 5181.29_01 [2003-08-16]
3f2ee006 519
520 - only getitimer(ITIMER_REAL) available in Cygwin and Win32
521 (need to patch this also in Perl 5.[89])
522 - remove CVS revision log from HiRes.xs
523
06252d99 5241.29_00 [2003-08-14]
3f2ee006 525
526 The following numbered patches refer to the Perl 5.7 changes,
527 you can browse them at http://public.activestate.com/cgi-bin/perlbrowse
528
529 - 17558: Add #!./perl to the .t
530 - 17201: linux + usemorebits fix, from Rafael Garcia-Suarez
531 - 16198: political correctness, from Simon Cozens
532 - 15857: doc tweaks, from Jarkko Hietaniemi
533 - 15593: optimization in .xs, from Paul Green
534 - 14892: pod fixes, from Robin Barker
535 - 14100: VOS fixes, from Paul Green
536 - 13422: XS segfault, from Marc Lehmann
537 - 13378: whether select() gets restarted on signals, depends
538 - 13354: timing constraints, again, from Andy Dougherty
170c5524 539 - 13278: can't do subsecond alarms with ualarm;
3f2ee006 540 break out early if alarms do not seem to be working
541 - 13266: test relaxation (cygwin gets lower hires
542 times than lores ones)
543 - 12846: protect against high load, from Jarkko Hietaniemi
544 - 12837: HiRes.t VMS tweak, from Craig A. Berry
545 - 12797: HiRes.t VMS tweak, from Charles Lane
546 - 12769: HiRes.t VMS tweak, from Craig A. Berry
547 - 12744: gcc vs MS 64-bit constant syntax, from Nick Ing-Simmons
548 - 12722: VMS ualarm for VMS without ualarm, from Charles Lane
549 - 12692: alarm() ain't gonna work if ualarm() ain't,
550 from Gurusamy Sarathy
551 - 12680: minor VMS tweak, from Charles Lane
552 - 12617: don't try to print ints as IVs, from Jarkko Hietaniemi
553 - 12609: croak on negative time, from Jarkko Hietaniemi
554 - 12595: Cygwin rounds up for time(), from Jarkko Hietaniemi
555 - 12594: MacOS Classic timeofday, from Chris Nandor
556 - 12473: allow for more than one second for sleep() and usleep()
557 - 12458: test tuning, relax timing constraints,
558 from Jarkko Hietaniemi
559 - 12449: make sleep() and usleep() to return the number
560 of seconds and microseconds actually slept (analogously
561 with the builtin sleep()), also make usleep() croak if
562 asked for more than 1_000_000 useconds, from Jarkko Hietaniemi
563 - 12366: Time::HiRes for VMS pre-7.0, from Charles Lane
564 - 12199: do not use ftime on Win32, from Gurusamy Sarathy
565 - 12196: use ftime() on Win32, from Artur Bergman
566 - 12184: fix Time::HiRes gettimeofday() on Win32, from Gurusamy Sarathy
567 - 12105: use GetSystemTime() on Win32, from Artur Bergman
568 - 12060: explain the 1e9 seconds problem, from Jarkko Hietaniemi
569 - 11901: UNICOS sloppy division, from Jarkko Hietaniemi
570 - 11797: problem in HiRes.t, from John P. Linderman
571 - 11414: prototype from Time::HiRes::sleep(), from Abhijit Menon-Sen
572 - 11409: Time::HiRes qw(sleep) failed, from Abhijit Menon-Sen
573 - 11270: dynix/ptx 4.5.2 hints fix, from Peter Prymmer
574 - 11032: VAX VMS s/div/lib\$ediv/ fix, from Peter Prymmer
575 - 11011: VAX VMS s/qdiv/div/ fix, from Peter Prymmer
576 - 10953: SCO OpenServer 5.0.5 requires an explicit -lc for usleep(),
577 from Jonathan Stowe
578 - 10942: MPE/IX test tweaks, from Mark Bixby
579 - 10784: unnecessary pod2man calls, from Andy Dougherty
580 - 10354: ext/ + -Wall, from Doug MacEachern
581 - 10320: fix the BOOT section to call myU2time correctly
582 - 10317: correct casting for AIX< from H. Merijn Brand
583 - 10119: document that the core time() may be rounding, not truncating
584 - 10118: test fix, from John Peacock
585 - 9988: long =item, from Robin Barker
586 - 9714: correct test output
587 - 9708: test also the scalar aspect of getitimer()
588 - 9705: Add interval timers (setitimer, getitimer)
589 - 9692: do not require at least 5.005 using XS
590
591 The following changes were made on top of the changes
592 made for Time::HiRes during the Perl 5.7 development
593 cycle that culminated in the release of Perl 5.8.0.
594
595 - add "require 5.005" to the Makefile.PL
596 - remove the REVISION section (CVS log) from HiRes.pm
597 - add jhi's copyright alongside Douglas'
598 - move HiRes.pm to lib/Time/
599 - move HiRes.t to t/
600 - modify HiRes.t to use $ENV{PERL_CORE}
601 - modify the original Time::HiRes version 1.20 Makefile.PL
602 to work both with Perl 5.8.0 and the new code with pre-5.8.0
603 Perls (tried with 5.6.1)
604 - tiny tweaks and updates in README and TODO
605 - bump the VERSION to 1.29
606
dcf686c9 6071.20 Wed Feb 24 21:30 1999
608 - make our usleep and ualarm substitutes into hrt_usleep
609 and hrt_ualarm. This helps static links of Perl with other
610 packages that also have usleep, etc. From
611 Ilya Zakharevich <ilya@math.ohio-state.edu>
612 - add C API stuff. From Joshua Pritikin
613 <joshua.pritikin@db.com>
3f2ee006 614 - VMS Makefile.PL fun. From pvhp@forte.com (Peter Prymmer)
dcf686c9 615 - hopefully correct "-lc" fix for SCO.
616 - add PPD stuff
617
56c1b3bd 618 1.20 adds a platform neutral set of C accessible routines if you are
619 running 5.005+. All other changes are packaging changes and build
620 fixes(?) for statically linked Perl, SCO, and VMS.
621
dcf686c9 6221.19 Tue Sep 29 22:30 1998
623 - put VMS gettimeofday() in. Patch is from Sebastian Bazley
624 <seb@stian.demon.co.uk>
625 - change GIMME_V to GIMME to help people with older versions of
626 Perl.
627 - fix Win32 version of gettimeofday(). It didn't affect anything,
628 but it confuses people reading the code when the return value
629 is backwards (0 is success).
630 - fix Makefile.PL (more) so that detection of gettimeofday is
631 more correct.
632
56c1b3bd 633 1.19 has better VMS support.
634
dcf686c9 6351.18 Mon Jul 6 22:40 1998
636 - add usleep() for Win32.
637 - fix Makefile.PL to fix reported HP/UX feature where unresolved
638 externals still cause an executable to be generated (though no
639 x bit set). Thanks to David Kozinn for report and explanation.
640 Problems with the fix are mine :)
641
56c1b3bd 642 1.18 has limited Win32 support (no ualarm). Added usleep for Win32.
643 Probably buggy. I'm sure I'll hear.
644
dcf686c9 6451.17 Wed Jul 1 20:10 1998
646 - fix setitimer calls so microseconds is not more than 1000000.
647 Hp/UX 9 doesn't like that. Provided by Roland B Robert, PhD.
3f2ee006 648 - make Win32. We only get gettimeofday (the select hack doesn't
dcf686c9 649 seem to work on my Win95 system).
3f2ee006 650 - fix test 4 on 01test.t. add test to see if time() and
dcf686c9 651 Time::HiRes::time() are close.
652
6531.16 Wed Nov 12 21:05 1997
654 - add missing EXTEND in new gettimeofday scalar code.
655
56c1b3bd 656 1.16+ should be closer to building out of the box on Linux. Thanks
657 to Gisle Aas for patches, and the ualarm equivalent using setitimer.
658
659 If your underlying operating system doesn't implement ualarm(), then
660 a fake using setitimer() will be made. If the OS is missing usleep(),
661 a fake one using select() will be made. If a fake can't be made for
662 either ualarm() or usleep(), then the corresponding Perl function will
663 not be available. If the OS is missing gettimeofday(), you will get
664 unresolved externals, either at link- or run-time.
665
666 This is an improvement; the package used to not even build if
667 you were missing any of these bits. Roderick Schertler
668
669 <roderick@argon.org> did all the conditional compilation stuff,
670 look at HiRes.pm and the test suites; it's good educational reading.
671
dcf686c9 6721.15 Mon Nov 10 21:30 1997
673 - HiRes.pm: update pod. Provided by Gisle Aas.
674 - HiRes.xs: if gettimeofday() called in scalar context, do
675 something more useful than before. Provided by Gisle Aas.
676 - README: tell of xsubpp '-nolinenumber' woes. thanks to
677 Edward Henigin <ed@texas.net> for pointing out the problem.
678
6791.14 Wed Nov 5 9:40 1997
680 - Makefile.PL: look for setitimer
681 - HiRes.xs: if missing ualarm, but we have setitimer, make up
682 our own setitimer. These were provided by Gisle Aas.
683
6841.13 Tue Nov 4 23:30 1997
685 - Makefile.PL: fix autodetect mechanism to do try linking in addition
686 to just compiling; should fix Linux build problem. Fix was provided
687 by Gisle Aas.
688
6891.12 Sun Oct 12 12:00:00 1997
690 - Makefile.PL: set XSOPT to '-nolinenumbers' to work around xsubpp bug;
691 you may need to comment this back out if you have an older xsubpp.
692 - HiRes.xs: set PROTOTYPES: DISABLE
693
6941.11 Fri Sep 05 16:00:00 1997
695 - Makefile.PL:
696 Had some line commented out that shouldn't have been (testing
697 remnants)
698 - README:
699 Previous version was corrupted.
700
7011.10 Thu May 22 20:20:00 1997
702 - HiRes.xs, HiRes.pm, t/*:
703 - only compile what we have OS support for (or can
704 fake with select())
705 - only test what we compiled
706 - gross improvement to the test suite
707 - fix EXPORT_FAIL.
708 This work was all done by Roderick Schertler
709 <roderick@argon.org>. If you run Linux or
170c5524 710 one of the other ualarm-less platforms, and you like this
dcf686c9 711 module, let Roderick know; without him, it still wouldn't
712 be working on those boxes...
713 - Makefile.PL: figure out what routines the OS has and
714 only build what we need. These bits were written by Jarkko
715 Hietaniemi <jhi@iki.fi>. Again, gratitude is due...
716
7171.02 Mon Dec 30 08:00:00 1996
718 - HiRes.pm: update documentation to say what to do when missing
719 ualarm() and friends.
720 - README: update to warn that ualarm() and friends need to exist
721
7221.01 Fri Oct 17 08:00:00 1996
723 - Makefile.PL: make XSPROTOARGS => '-noprototyopes'
724 - HiRes.pm: put blank line between __END__ and =head1 so that
725 pod2man works.
726
7271.00 Tue Sep 03 13:00:00 1996
728 - original version; created by h2xs 1.16