Changeset 985e26d2 in mainline for uspace/lib/libc/include/unistd.h
- Timestamp:
- 2010-01-07T19:06:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8190e63
- Parents:
- 743e17b (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/unistd.h
r743e17b r985e26d2 51 51 #endif 52 52 53 typedef uint32_t useconds_t; 54 55 extern int dup2(int oldfd, int newfd); 56 53 57 extern ssize_t write(int, const void *, size_t); 54 58 extern ssize_t read(int, void *, size_t); … … 66 70 67 71 extern void _exit(int status) __attribute__ ((noreturn)); 68 extern int usleep(u nsigned long usec);69 extern unsigned int sleep(unsigned int se conds);72 extern int usleep(useconds_t uses); 73 extern unsigned int sleep(unsigned int se); 70 74 71 75 #endif
Note:
See TracChangeset
for help on using the changeset viewer.