src/Pure/ML-Systems/mlworks.ML
changeset 12988 2112f9e337bb
parent 12896 4518acda6d93
child 14519 4ca3608fdf4f
--- a/src/Pure/ML-Systems/mlworks.ML	Thu Feb 28 21:31:47 2002 +0100
+++ b/src/Pure/ML-Systems/mlworks.ML	Thu Feb 28 21:32:46 2002 +0100
@@ -24,7 +24,7 @@
     let val max_stack = MLWorks.Internal.Runtime.Memory.max_stack_blocks
     in max_stack := (!max_stack * 3) div 2 + 5;
        print ("#### Increasing stack to " ^ Int.toString (64 * !max_stack) ^
-	      "KB\n")
+              "KB\n")
     end);
   MLWorks.Internal.Runtime.Memory.gc_message_level := 10;
   (*Is this of any use at all?*)
@@ -91,14 +91,14 @@
 
 
 
-(** interrupts **)	(*Note: may get into race conditions*)
+(** interrupts **)      (*Note: may get into race conditions*)
 
 exception Interrupt;
 
 MLWorks.Internal.Runtime.Event.interrupt_handler (fn () => raise Interrupt);
 
-fun mask_interrupt f x = f x;           
-fun exhibit_interrupt f x = f x;
+fun ignore_interrupt f x = f x;
+fun raise_interrupt f x = f x;