X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fthreads.texi;h=40565994f536bbbec06e7a9beb25ae494cd4a60a;hb=6bfa59ceea7937a705f85de45ba69bf8ba2504c6;hp=1093f335636dcc13c85e3bebe944129d97c7beae;hpb=ad15679e64c257df1447acebeed22d1f76607ff6;p=pintos-anon diff --git a/doc/threads.texi b/doc/threads.texi index 1093f33..4056599 100644 --- a/doc/threads.texi +++ b/doc/threads.texi @@ -717,4 +717,12 @@ just before the first @func{printf} in @func{main}. Then modify It doesn't have to. We won't test priority donation and the advanced scheduler at the same time. + +@item Can I use one queue instead of 64 queues? + +Yes, that's fine. It's easiest to describe the algorithm in terms of 64 +separate queues, but that doesn't mean you have to implement it that +way. + +If you use a single queue, it should probably be sorted. @end table