Clean up threads.c.
[pintos-anon] / src / threads / thread.h
1 #ifndef HEADER_THREAD_H
2 #define HEADER_THREAD_H 1
3
4 #include <stdint.h>
5 #include "debug.h"
6 #include "list.h"
7
8 #ifdef USERPROG
9 #include "addrspace.h"
10 #endif
11
12 enum thread_status 
13   {
14     THREAD_RUNNING,
15     THREAD_READY,
16     THREAD_BLOCKED,
17     THREAD_DYING
18   };
19
20 struct thread 
21   {
22     enum thread_status status;
23     char name[16];
24     uint8_t *stack;
25     list_elem rq_elem;
26 #ifdef USERPROG
27     struct addrspace addrspace;
28 #endif
29   };
30
31 void thread_init (const char *name, void (*) (void *aux), void *) NO_RETURN;
32 struct thread *thread_create (const char *name, void (*) (void *aux), void *);
33 void thread_destroy (struct thread *);
34 struct thread *thread_current (void);
35
36 #ifdef USERPROG
37 bool thread_execute (const char *filename);
38 #endif
39
40 void thread_ready (struct thread *);
41 void thread_exit (void) NO_RETURN;
42
43 void thread_yield (void);
44 void thread_sleep (void);
45
46 #endif /* thread.h */