Subversion Repositories HelenOS-historic

Rev

Rev 1158 | Rev 1184 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1158 Rev 1171
Line 135... Line 135...
135
extern void thread_init(void);
135
extern void thread_init(void);
136
extern thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, int flags, char *name);
136
extern thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, int flags, char *name);
137
extern void thread_ready(thread_t *t);
137
extern void thread_ready(thread_t *t);
138
extern void thread_exit(void);
138
extern void thread_exit(void);
139
 
139
 
-
 
140
#ifndef thread_create_arch
-
 
141
extern void thread_create_arch(thread_t *t);
-
 
142
#endif
-
 
143
 
140
extern void thread_sleep(__u32 sec);
144
extern void thread_sleep(__u32 sec);
141
extern void thread_usleep(__u32 usec);
145
extern void thread_usleep(__u32 usec);
142
 
146
 
143
extern void thread_register_call_me(void (* call_me)(void *), void *call_me_with);
147
extern void thread_register_call_me(void (* call_me)(void *), void *call_me_with);
144
extern void thread_print_list(void);
148
extern void thread_print_list(void);