aboutsummaryrefslogtreecommitdiffstats
path: root/src/standalone/upg5/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/standalone/upg5/thread.h')
-rw-r--r--src/standalone/upg5/thread.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/standalone/upg5/thread.h b/src/standalone/upg5/thread.h
deleted file mode 100644
index 62568ab..0000000
--- a/src/standalone/upg5/thread.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef THREAD_H
-#define THREAD_H
-
-struct thread
-{
- /* This is just a part of the Pintos Thread. */
- void* pagedir;
-};
-
-/* Initiate the threading system. */
-void thread_init();
-
-/* Return a pointer to the currently active thread. */
-struct thread* thread_current();
-
-#endif