From 5ca32ac0a54e78dc178de858a23cd14a012b0745 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 11 Oct 2004 22:34:27 +0000 Subject: [PATCH] Make sure that we're not being tested with MLFQS on. --- src/tests/threads/p1-3.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tests/threads/p1-3.c b/src/tests/threads/p1-3.c index 3b48836..3caa7f9 100644 --- a/src/tests/threads/p1-3.c +++ b/src/tests/threads/p1-3.c @@ -11,6 +11,10 @@ #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); -- 2.30.2