Ignore:
Timestamp:
2018-07-16T15:58:51Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
db51219f
Parents:
c124c985
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-14 16:53:46)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-16 15:58:51)
Message:

Privatize <thread.h>.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/private/thread.h

    rc124c985 r38d8849  
    3636#define LIBC_PRIVATE_THREAD_H_
    3737
     38#include <time.h>
    3839#include <abi/proc/uarg.h>
     40#include <libarch/thread.h>
     41#include <abi/proc/thread.h>
    3942
    4043extern void __thread_entry(void);
    4144extern void __thread_main(uspace_arg_t *);
     45
     46extern errno_t thread_create(void (*)(void *), void *, const char *, thread_id_t *);
     47extern void thread_exit(int) __attribute__((noreturn));
     48extern void thread_detach(thread_id_t);
     49extern thread_id_t thread_get_id(void);
     50extern int thread_usleep(useconds_t);
     51extern unsigned int thread_sleep(unsigned int);
    4252
    4353#endif
Note: See TracChangeset for help on using the changeset viewer.