Nitrox has asked for the wisdom of the Perl Monks concerning the following question:
I have a perl script that is lauched by another script via Win32::Process. (so it can run detached; a.k.a no console window). Within the running script I have certain points where it sleeps for a short bit.
My question is; is there a difference between using sleep(1); or Win32::Sleep(1000)? Do both "hand-off" the time-slices while sleeping?
-Nitrox
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: sleep() VS Win32::sleep()
by svad (Pilgrim) on Jul 21, 2002 at 18:45 UTC | |
Re: sleep() VS Win32::sleep()
by BrowserUk (Patriarch) on Jul 21, 2002 at 19:01 UTC |
Back to
Seekers of Perl Wisdom