Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r8d2dd7f2  
    3636#define LIBC_THREAD_H_
    3737
    38 #include <errno.h>
    3938#include <libarch/thread.h>
    4039#include <stdint.h>
     
    4241#include <time.h>
    4342
    44 extern errno_t thread_create(void (*)(void *), void *, const char *, thread_id_t *);
     43extern int thread_create(void (*)(void *), void *, const char *, thread_id_t *);
    4544extern void thread_exit(int) __attribute__((noreturn));
    4645extern void thread_detach(thread_id_t);
    47 extern errno_t thread_join(thread_id_t);
     46extern int thread_join(thread_id_t);
    4847extern thread_id_t thread_get_id(void);
    4948extern int thread_usleep(useconds_t);
Note: See TracChangeset for help on using the changeset viewer.