summaryrefslogtreecommitdiff
path: root/test/files/presentation/forgotten-ask.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixed SI-6505. Respond to ask calls by immediate failure even after compiler ↵Iulian Dragos2012-10-101-0/+33
shutdown. When the compiler is asked to shutdown, it may still have items on the working queue, and more can be added by clients in other thread that don't *know* the compiler is down yet. These requests were never serviced, leading to deadlocks or timeouts. review by @odersky, @hubertp