Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/thread.h

    r8d2dd7f2 rb7fd2a0  
    3636#define LIBC_THREAD_H_
    3737
     38#include <errno.h>
    3839#include <libarch/thread.h>
    3940#include <stdint.h>
     
    4142#include <time.h>
    4243
    43 extern int thread_create(void (*)(void *), void *, const char *, thread_id_t *);
     44extern errno_t thread_create(void (*)(void *), void *, const char *, thread_id_t *);
    4445extern void thread_exit(int) __attribute__((noreturn));
    4546extern void thread_detach(thread_id_t);
    46 extern int thread_join(thread_id_t);
     47extern errno_t thread_join(thread_id_t);
    4748extern thread_id_t thread_get_id(void);
    4849extern int thread_usleep(useconds_t);
Note: See TracChangeset for help on using the changeset viewer.