Changeset dd655970 in mainline for uspace/libc/include


Ignore:
Timestamp:
2007-04-06T14:01:46Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69e9dd2
Parents:
3ce7f082
Message:

new user space testing framework (unfinished)

Location:
uspace/libc/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/include/thread.h

    r3ce7f082 rdd655970  
    4545extern int thread_create(void (* function)(void *arg), void *arg, char *name);
    4646extern void thread_exit(int status);
     47extern void thread_detach(int thread);
     48extern int thread_join(int thread);
     49extern int thread_get_id(void);
    4750extern tcb_t * __make_tls(void);
    4851extern tcb_t * __alloc_tls(void **data, size_t size);
  • uspace/libc/include/unistd.h

    r3ce7f082 rdd655970  
    4545extern ssize_t read(int fd, void * buf, size_t count);
    4646extern void _exit(int status);
    47 void *sbrk(ssize_t incr);
    48 void usleep(unsigned long usec);
     47extern void *sbrk(ssize_t incr);
     48extern void usleep(unsigned long usec);
     49extern unsigned int sleep(unsigned int seconds);
    4950
    5051#endif
Note: See TracChangeset for help on using the changeset viewer.