Changeset e5a1f82f in mainline for libc/include/thread.h


Ignore:
Timestamp:
2006-03-17T18:09:15Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
81e55099
Parents:
11a4fbf
Message:

Improved uspace threads (uspace).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/include/thread.h

    r11a4fbf re5a1f82f  
    3030#define __LIBC__THREAD_H__
    3131
    32 int thread_create(void (* function)(void *arg), void *arg, void *stack, char *name);
    33 void thread_exit(int status);
     32#include <kernel/proc/uarg.h>
     33
     34extern void __thread_entry(void);
     35extern void thread_main(uspace_arg_t *uarg);
     36
     37extern int thread_create(void (* function)(void *arg), void *arg, char *name);
     38extern void thread_exit(int status);
    3439
    3540#endif
Note: See TracChangeset for help on using the changeset viewer.