Ignore:
File:
1 edited

Legend:

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

    r47b7006 r63f8966  
    3636#define LIBC_THREAD_H_
    3737
     38#include <kernel/proc/uarg.h>
    3839#include <libarch/thread.h>
    3940#include <sys/types.h>
     
    4142typedef uint64_t thread_id_t;
    4243
     44extern void __thread_entry(void);
     45extern void __thread_main(uspace_arg_t *);
     46
    4347extern int thread_create(void (*)(void *), void *, const char *, thread_id_t *);
    44 extern void thread_exit(int) __attribute__((noreturn));
     48extern void thread_exit(int) __attribute__ ((noreturn));
    4549extern void thread_detach(thread_id_t);
    4650extern int thread_join(thread_id_t);
Note: See TracChangeset for help on using the changeset viewer.