Clean up threads.
[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;          /* Thread state. */
23     char name[16];                      /* Name (for debugging purposes). */
24     uint8_t *stack;                     /* Saved stack pointer. */
25     list_elem rq_elem;                  /* Run queue list element. */
26 #ifdef USERPROG
27     struct addrspace addrspace;         /* Userland address space. */
28 #endif
29     unsigned magic;                     /* Always set to THREAD_MAGIC. */
30   };
31
32 void thread_init (void);
33 void thread_start (void) NO_RETURN;
34
35 struct thread *thread_create (const char *name, void (*) (void *aux), void *);
36 #ifdef USERPROG
37 bool thread_execute (const char *filename);
38 #endif
39
40 void thread_wake (struct thread *);
41 const char *thread_name (struct thread *);
42
43 struct thread *thread_current (void);
44 void thread_exit (void) NO_RETURN;
45 void thread_yield (void);
46 void thread_sleep (void);
47
48 #endif /* thread.h */