Skip to content
Snippets Groups Projects
Commit 4e799ee6 authored by Marcus Comstedt's avatar Marcus Comstedt
Browse files

Forgot to add prototypes.

Rev: src/threads.h:1.32
parent 8d36d5cf
No related branches found
No related tags found
No related merge requests found
......@@ -367,6 +367,12 @@ void init_thread_obj(struct object *o);
void exit_thread_obj(struct object *o);
void th_init(void);
void th_cleanup(void);
void thread_table_insert(struct object *o);
void thread_table_delete(struct object *o);
struct thread_state *thread_state_for_id(THREAD_T tid);
struct object *thread_for_id(THREAD_T tid);
void f_all_threads(INT32 args);
/* Prototypes end here */
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment