summaryrefslogtreecommitdiff
path: root/ext/Time/HiRes/HiRes.pm
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-17 14:48:38 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-17 14:48:38 +0000
commit92bc48ca26b0fb2ba59389610ad13851aac4fcb8 (patch)
tree773ad4619587e6042f5fce76a97a7ac14000c151 /ext/Time/HiRes/HiRes.pm
parent33459055ff280d2a3b935d256531a576b162ec79 (diff)
downloadperl-92bc48ca26b0fb2ba59389610ad13851aac4fcb8.tar.gz
Limiting the Time::HiRes::sleep and usleep to
one second is not a good policy if drop-in replacement is still a goal. p4raw-id: //depot/perl@12473
Diffstat (limited to 'ext/Time/HiRes/HiRes.pm')
-rw-r--r--ext/Time/HiRes/HiRes.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm
index 4e5244b6bb..72fc6065df 100644
--- a/ext/Time/HiRes/HiRes.pm
+++ b/ext/Time/HiRes/HiRes.pm
@@ -106,9 +106,8 @@ seconds like Time::HiRes::time() (see below).
=item usleep ( $useconds )
Issues a usleep for the number of microseconds specified. Returns the
-number of microseconds actually slept. The number of microseconds
-B<must> be between 0 and 1_000_0000 (inclusive): you B<cannot> sleep
-a minute by usleep(60_000_000). See also Time::HiRes::sleep() below.
+number of microseconds actually slept. See also Time::HiRes::sleep()
+below.
=item ualarm ( $useconds [, $interval_useconds ] )