Changes in uspace/lib/posix/source/unistd.c [582a0b8:1165a419] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/unistd.c
r582a0b8 r1165a419 45 45 46 46 #include "libc/task.h" 47 #include "libc/thread.h" 47 48 #include "libc/stats.h" 48 49 #include "libc/malloc.h" … … 56 57 char **posix_environ = NULL; 57 58 char *posix_optarg; 59 60 /** 61 * Sleep for the specified number of seconds. 62 * 63 * Note that POSIX allows this call to be interrupted and then the return 64 * value represents remaining seconds for the sleep. HelenOS does not offer 65 * such functionality and thus always the whole sleep is taken. 66 * 67 * @param seconds Number of seconds to sleep. 68 * @return Always 0 on HelenOS. 69 */ 70 unsigned int posix_sleep(unsigned int seconds) 71 { 72 return thread_sleep(seconds); 73 } 58 74 59 75 /**
Note:
See TracChangeset
for help on using the changeset viewer.