2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 POSIX.1-2008 function sleep()
9 /*****************************************************************************
17 unsigned int seconds
)
20 The sleep() function makes the current process sleep for the
21 specified number of seconds or until a signal arrives which
25 seconds - The number of seconds to sleep
28 Zero if the requested time has elapsed, or the number of seconds
29 left to sleep when the process was signalled.
34 // Sleep for 10 seconds
38 The current implementation simply uses the dos.library function
39 Delay() to sleep, and cannot be interrupted by incoming signals.
40 This shouldn't be of any importance, since AROS doesn't have
41 POSIX style signalling yet (but when it is implemented, this
42 function needs to be changed).
48 ******************************************************************************/
50 Delay( seconds
* 50 );