Get rid of THREAD_JOIN_IMPLEMENTED by adding thread_join() stub.
authorBen Pfaff <blp@cs.stanford.edu>
Mon, 7 Feb 2005 05:56:04 +0000 (05:56 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Mon, 7 Feb 2005 05:56:04 +0000 (05:56 +0000)
Also add stub implementations of thread_get_priority() and
thread_set_priority().

12 files changed:
doc/filesys.texi
doc/standards.texi
doc/threads.texi
doc/userprog.texi
doc/vm.texi
grading/lib/Pintos/Grading.pm
src/constants.h
src/tests/threads/p1-4.c
src/threads/init.c
src/threads/thread.c
src/threads/thread.h
tests/Makefile

index b71974f717da1437ab95a72ff941e5b8c81219c8..02808bb821c74902187a7f6b51886383860a5d71 100644 (file)
@@ -21,9 +21,6 @@ parts work together so that you can run VM and your filesystem at the
 same time.  Plus, keeping VM is a great way to stress-test your
 filesystem implementation.
 
-Your submission should define @code{THREAD_JOIN_IMPLEMENTED} in
-@file{constants.h} (@pxref{Conditional Compilation}).
-
 @menu
 * File System New Code::        
 * File System Synchronization::  
index 5b5d50293cb4397168d4027b37ce45e19f209f94..2582e5c58f26e335a2cf4ff9caee5880fa7036da 100644 (file)
@@ -77,11 +77,6 @@ compile properly without the need for any new macros to be defined.
 There are a few exceptions:
 
 @itemize @bullet
-@item
-Problem 1-2, @func{thread_join}.  Some other code expects
-@code{THREAD_JOIN_IMPLEMENTED} to be defined once you've implemented
-this function.
-
 @item
 Problem 1-4, the advanced scheduler.  We must be able to turn this on
 and off with a compile-time directive.  You must use the macro name we
index 44066d2f4b9e7e46d581b2dc23cc6269163ab160..1905707ffa09a631d2a7114febf6472438b52d93 100644 (file)
@@ -502,10 +502,6 @@ Write test code that demonstrates the cases your join works for.
 Be careful to program this function correctly.  You will need its
 functionality for project 2.
 
-Once you've implemented @func{thread_join}, define
-@code{THREAD_JOIN_IMPLEMENTED} in @file{constants.h}.
-@xref{Conditional Compilation}, for more information.
-
 @node Problem 1-3 Priority Scheduling
 @section Problem 1-3: Priority Scheduling
 
index 9db073776ab70c7fadb9e711325b991a23e5e552..fa3b4b8deb23d0a097249e7f1beefcb94d9cff9c 100644 (file)
@@ -15,9 +15,7 @@ other part of the code for this assignment. We will describe the
 relevant parts below. If you are confident in your HW1 code, you can
 build on top of it.  However, if you wish you can start with a fresh
 copy of the code and re-implement @func{thread_join}, which is the
-only part of project #1 required for this assignment.  Your submission
-should define @code{THREAD_JOIN_IMPLEMENTED} in @file{constants.h}
-(@pxref{Conditional Compilation}).
+only part of project #1 required for this assignment.
 
 Up to now, all of the code you have written for Pintos has been part
 of the operating system kernel.  This means, for example, that all the
index 90d407d2bc5edd7bd04c7b35ca227488224f89c5..fe948207486f56800d8ae81010bc6ede91e1de3e 100644 (file)
@@ -38,9 +38,6 @@ introduced in this project.
 You will continue to handle Pintos disks and file systems the same way
 you did in the previous assignment (@pxref{Using the File System}).
 
-Your submission should define @code{THREAD_JOIN_IMPLEMENTED} in
-@file{constants.h} (@pxref{Conditional Compilation}).
-
 @menu
 * VM Design::                   
 * Page Faults::                 
index 463d475eada79a590a1241847c24778a754c1698..6a21d5231edf2851ea6370148c9b84e0331722b9 100644 (file)
@@ -138,10 +138,9 @@ sub extract_sources {
                 LOG => $stem, DIE => "applying patch $stem failed\n");
     }
 
-    # Install default pintos/src/constants.h.
+    # Install default pintos/src/constants.h (which is empty).
     open (CONSTANTS, ">pintos/src/constants.h")
        or die "constants.h: create: $!\n";
-    print CONSTANTS "#define THREAD_JOIN_IMPLEMENTED 1\n";
     close CONSTANTS;
 }
 
index 6fca7494e6ecf9cc93f6d865611e16daf4272aac..8ffe2f622781e6581426aea5b7b6f9097f031e66 100644 (file)
@@ -6,6 +6,3 @@
 
 /* Example definition. */
 /*#define MACRONAME 1 */
-
-/* Uncomment if if you've implemented thread_join(). */
-/*#define THREAD_JOIN_IMPLEMENTED 1*/
index 9d66a6f991b695033476542c94279f4bd7412fe9..1f97b2e7edb6fb9ed008a2811d111f638499c9e6 100644 (file)
@@ -33,7 +33,6 @@ test (void)
   static thread_func *funcs[] = {io_thread, cpu_thread, io_cpu_thread};
   static const char *names[] = {"IO", "CPU", "IO & CPU"};
   struct semaphore done[3];
-  tid_t tids[3];
   int i;
 
   printf ("\n"
@@ -43,18 +42,12 @@ test (void)
   for (i = 0; i < 3; i++) 
     {
       sema_init (&done[i], 0, names[i]);
-      tids[i] = thread_create (names[i], PRI_DEFAULT, funcs[i], &done[i]);
+      thread_create (names[i], PRI_DEFAULT, funcs[i], &done[i]);
     }
 
   /* Wait for threads to finish. */
   for (i = 0; i < 3; i++)
-    {
-#ifdef THREAD_JOIN_IMPLEMENTED
-      thread_join (tids[i]);
-#else
-      sema_down (&done[i]);
-#endif
-    }
+    sema_down (&done[i]);
   printf ("Multilevel feedback queue scheduler test done.\n");
 }
 
index c17316aa59efec1951ad48eed5c8e4522a3e0381..b4b1057eb750fd290d7a02adbc752c073db7a210 100644 (file)
@@ -123,10 +123,8 @@ main (void)
       tid_t tid;
       printf ("\nExecuting '%s':\n", initial_program);
       tid = process_execute (initial_program);
-#ifdef THREAD_JOIN_IMPLEMENTED
       if (tid != TID_ERROR)
         thread_join (tid);
-#endif
     }
 #else
   /* Run the compiled-in test function. */
index 1e5a7d27179e928cb462a813200ed1a8518ccbf4..ae92e1d646dc50d50ce02d26747ca12a8bd82236 100644 (file)
@@ -273,6 +273,31 @@ thread_yield (void)
   schedule ();
   intr_set_level (old_level);
 }
+
+/* Waits for the thread with the specified TID to terminate.  If
+   TID has already terminated or TID does not refer to an
+   immediate child of the current thread, returns immediately.
+
+   This function will be implemented in problem 1-2.  For now, it
+   does nothing. */
+void
+thread_join (tid_t child_tid UNUSED) 
+{
+}
+
+/* Sets the current thread's priority to NEW_PRIORITY. */
+void
+thread_set_priority (int new_priority) 
+{
+  thread_current ()->priority = new_priority;
+}
+
+/* Returns the current thread's priority. */
+int
+thread_get_priority (void) 
+{
+  return thread_current ()->priority;
+}
 \f
 /* Idle thread.  Executes when no other thread is ready to run. */
 static void
index 6fcbfc75fe49647a359b4eb56e927375ca694164..af1f16d662e48b7da501a9999b3cc1d0de689e78 100644 (file)
@@ -119,10 +119,8 @@ const char *thread_name (void);
 void thread_exit (void) NO_RETURN;
 void thread_yield (void);
 
-/* This function will be implemented in problem 1-2. */
 void thread_join (tid_t);
 
-/* These functions will be implemented in problem 1-3. */
 void thread_set_priority (int);
 int thread_get_priority (void);
 
index f813f7de92a1206dfbd157e4a8690e563df92df7..efea7a5078db3e7da0cb6621a588f4f0ed9b313f 100644 (file)
@@ -91,7 +91,6 @@ userprog::
        $(prep-grading)
        $(mk-sandbox)
        $(apply-patch) ../solutions/p1-2.patch
-       echo '#define THREAD_JOIN_IMPLEMENTED 1' > $@/pintos/src/constants.h
        $(run-tests) null
        $(clean)