src/Pure/ML-Systems/smlnj-interrupt-timeout.ML
author webertj
Mon, 23 Jan 2006 17:29:52 +0100
changeset 18760 97aaecb84afe
child 18790 418131f631fc
permissions -rw-r--r--
TimeLimit replaced by interrupt_timeout
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18760
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     1
(*  Title:      Pure/ML-Systems/smlnj-interrupt-timeout.ML
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     2
    ID:         $Id$
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     3
    Author:     Tjark Weber, Makarius
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     4
    Copyright   2006
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     5
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     6
Bounded time execution (similar to SML/NJ's TimeLimit structure).
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     7
*)
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     8
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
     9
fun interrupt_timeout time f x =
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
    10
  TimeLimit.timeLimit time f x
97aaecb84afe TimeLimit replaced by interrupt_timeout
webertj
parents:
diff changeset
    11
    handle TimeLimit.TimeOut => raise SML90.Interrupt;