Neither of these tests works under MLFQS.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 12 Oct 2004 17:17:18 +0000 (17:17 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 12 Oct 2004 17:17:18 +0000 (17:17 +0000)
src/tests/threads/p1-1.c
src/tests/threads/p1-3.c

index 03c4d72bc519535a3d622f6e2a1ed51a313e16b1..7e528668addb5e2735f5b3a16e6d21585852cff6 100644 (file)
    Taskar <btaskar@cs.stanford.edu>, and Toli Kuznets
    <tolik@cs.stanford.edu>. */
 
+#ifdef MLFQS
+#error This test not applicable with MLFQS enabled.
+#endif
+
 #include "threads/test.h"
 #include <stdio.h>
 #include "threads/synch.h"
index 3caa7f9f7ea947b840886ef63ef73aca4294a274..2c3530d9a8817d42a1630a50a9d825452cea3f86 100644 (file)
@@ -6,15 +6,15 @@
    <gmh@leland.stanford.edu>, Yu Ping Hu <yph@cs.stanford.edu>.
    Modified by arens. */
 
+#ifdef MLFQS
+#error This test not applicable with MLFQS enabled.
+#endif
+
 #include "threads/test.h"
 #include <stdio.h>
 #include "threads/synch.h"
 #include "threads/thread.h"
 
-#ifdef MLFQS
-#error This test not applicable with MLFQS enabled.
-#endif
-
 static void test_preempt (void);
 static void test_fifo (void);
 static void test_donate_return (void);