This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: CTRL+C is not working with java on latest cygwin 1.7.15


Just tested with this against the latest release version (1.7.15) and
everything works as expected.

Example:
public final class Test {
    public static void main(String[] args) {
        System.out.println("This shall hang until CTRL-C is pressed...");
        for (;;);
    }
}

javac -cp . Test.java
java -cp . Test

Press CTRL-C and you are returned to the terminal.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]