src/Pure/ML-Systems/multithreading.ML
changeset 28169 356fc8734741
parent 28160 e0177b67ecd9
child 28187 4062882c7df3
--- a/src/Pure/ML-Systems/multithreading.ML	Mon Sep 08 20:33:27 2008 +0200
+++ b/src/Pure/ML-Systems/multithreading.ML	Mon Sep 08 20:33:29 2008 +0200
@@ -20,7 +20,6 @@
   val max_threads: int ref
   val max_threads_value: unit -> int
   val no_interrupts: Thread.threadAttribute list
-  val sync_interrupts: Thread.threadAttribute list
   val regular_interrupts: Thread.threadAttribute list
   val with_attributes: Thread.threadAttribute list ->
     (Thread.threadAttribute list -> 'a -> 'b) -> 'a -> 'b
@@ -41,7 +40,6 @@
 fun max_threads_value () = Int.max (! max_threads, 1);
 
 val no_interrupts = [];
-val sync_interrupts = [];
 val regular_interrupts = [];
 
 fun with_attributes _ f x = f [] x;