summaryrefslogtreecommitdiff
path: root/test/pending/run/signals.scala
Commit message (Collapse)AuthorAgeFilesLines
* A new totally safe signal manager, along with a...Paul Phillips2010-11-261-0/+22
A new totally safe signal manager, along with all the support code needed for that. See the classes in scala.tools.reflect.* for interesting new weapons. Also includes inaugural handy usage: scala> val x = 10 x: Int = 10 scala> while (true) () [ctrl-C] Execution interrupted by signal. scala> x res1: Int = 10 No review, but feedback welcome.