I'm curious if there's an advantage to using the Win32::Sleep() function over Perl's own sleep() routine. The only obvious one I see is that the Win32 version is in milliseconds, giving it greater granularity. But there are ways to do that with select() without introducing portability problems. Is there any other reason I should use Win32::Sleep when writing programs for the Win32 platform, instead of sleep() or select()?