src/Pure/ML-Systems/ml_stack_dummy.ML
author wenzelm
Tue, 03 Nov 2015 13:54:34 +0100
changeset 61556 0d4ee4168e41
parent 60923 020becec359c
permissions -rw-r--r--
clarified modules;

(*  Title:      Pure/ML-Systems/ml_stack_dummy.ML

Maximum stack size (in words) for ML threads -- dummy version.
*)

signature ML_STACK =
sig
  val limit: int option -> Thread.threadAttribute list
end;

structure ML_Stack: ML_STACK =
struct

fun limit (_: int option) : Thread.threadAttribute list = [];

end;