diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-27 12:35:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-27 12:35:33 +0000 |
commit | f8daf111cf97dcea4d3f7a99b328e7928e16363c (patch) | |
tree | 55cd1c6c5949fbb784521fd3ff90d6ca27faba03 /ext/Time | |
parent | 77785eead56f43b89f14cf6ef1c9a99846e1beff (diff) | |
download | perl-f8daf111cf97dcea4d3f7a99b328e7928e16363c.tar.gz |
Upgrade to Time::HiRes 1.70
p4raw-id: //depot/perl@24988
Diffstat (limited to 'ext/Time')
-rw-r--r-- | ext/Time/HiRes/Changes | 5 | ||||
-rw-r--r-- | ext/Time/HiRes/HiRes.pm | 5 | ||||
-rw-r--r-- | ext/Time/HiRes/HiRes.xs | 10 |
3 files changed, 17 insertions, 3 deletions
diff --git a/ext/Time/HiRes/Changes b/ext/Time/HiRes/Changes index 5661bbc726..0cc806c1dc 100644 --- a/ext/Time/HiRes/Changes +++ b/ext/Time/HiRes/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Time::HiRes. +1.70 - oops in 1.69 about @ISA (not affecting anything but silly) + - add copyright 2005 to HiRes.pm + - add copyright and license to HiRes.xs + - add copyrights 2003,2004,2005 to README + 1.69 - actually run a test for nanosleep since e.g. in AIX 4.2 it seems that one can link in nanosleep() but then calling it fails instantly and sets errno to ENOSYS (Not implemented). diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm index a14dbb0255..88bab3f072 100644 --- a/ext/Time/HiRes/HiRes.pm +++ b/ext/Time/HiRes/HiRes.pm @@ -6,7 +6,6 @@ use vars qw($VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD); require Exporter; require DynaLoader; -@ISA = qw(Exporter DynaLoader); @ISA = qw(Exporter); @EXPORT = qw( ); @@ -16,7 +15,7 @@ require DynaLoader; d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer d_nanosleep); -$VERSION = '1.69'; +$VERSION = '1.70'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -387,7 +386,7 @@ G. Aas <gisle@aas.no> Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. -Copyright (c) 2002,2003,2004 Jarkko Hietaniemi. All rights reserved. +Copyright (c) 2002,2003,2004,2005 Jarkko Hietaniemi. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/ext/Time/HiRes/HiRes.xs b/ext/Time/HiRes/HiRes.xs index f945edb1bb..edc1720aaf 100644 --- a/ext/Time/HiRes/HiRes.xs +++ b/ext/Time/HiRes/HiRes.xs @@ -1,3 +1,13 @@ +/* + * + * Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. + * + * Copyright (c) 2002,2003,2004,2005 Jarkko Hietaniemi. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the same terms as Perl itself. + */ + #ifdef __cplusplus extern "C" { #endif |