summaryrefslogtreecommitdiff
path: root/pod/perlfaq8.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-14 14:08:28 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-14 14:08:28 +0000
commit0325b4c4b7ee03ae5602904f2a8f8c7254d59b1b (patch)
treedb267340f71bb0f6d130629998bccf12b022770b /pod/perlfaq8.pod
parent3170649431eb5688b22560d1c824cf4b7252a79c (diff)
downloadperl-0325b4c4b7ee03ae5602904f2a8f8c7254d59b1b.tar.gz
Drop the eg/ mentions and also mention the recent suidperl thing.
p4raw-id: //depot/perl@6617
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r--pod/perlfaq8.pod9
1 files changed, 2 insertions, 7 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index ed22ba0c59..0ac462021b 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -443,9 +443,8 @@ probably get away with setting an environment variable:
If you want finer granularity than the 1 second that the sleep()
function provides, the easiest way is to use the select() function as
-documented in L<perlfunc/"select">. If your system has itimers and
-syscall() support, you can check out the old example in
-http://www.perl.com/CPAN/doc/misc/ancient/tutorial/eg/itimers.pl .
+documented in L<perlfunc/"select">. Try the Time::HiRes and
+the BSD::Itimer modules (available from CPAN).
=head2 How can I measure time under a second?
@@ -906,10 +905,6 @@ Background yourself like this:
The Proc::Daemon module, available from CPAN, provides a function to
perform these actions for you.
-=head2 How do I make my program run with sh and csh?
-
-See the F<eg/nih> script (part of the perl source distribution).
-
=head2 How do I find out if I'm running interactively or not?
Good question. Sometimes C<-t STDIN> and C<-t STDOUT> can give clues,