Changeset dd655970 in mainline for uspace/libc/include
- Timestamp:
- 2007-04-06T14:01:46Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 69e9dd2
- Parents:
- 3ce7f082
- Location:
- uspace/libc/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/include/thread.h
r3ce7f082 rdd655970 45 45 extern int thread_create(void (* function)(void *arg), void *arg, char *name); 46 46 extern void thread_exit(int status); 47 extern void thread_detach(int thread); 48 extern int thread_join(int thread); 49 extern int thread_get_id(void); 47 50 extern tcb_t * __make_tls(void); 48 51 extern tcb_t * __alloc_tls(void **data, size_t size); -
uspace/libc/include/unistd.h
r3ce7f082 rdd655970 45 45 extern ssize_t read(int fd, void * buf, size_t count); 46 46 extern void _exit(int status); 47 void *sbrk(ssize_t incr); 48 void usleep(unsigned long usec); 47 extern void *sbrk(ssize_t incr); 48 extern void usleep(unsigned long usec); 49 extern unsigned int sleep(unsigned int seconds); 49 50 50 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
