diff options
author | Bdale Garbee <bdale@gag.com> | 2013-12-18 18:25:35 -0700 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2013-12-18 18:25:35 -0700 |
commit | d9982c257463f23be940eea66bd4dc3aadff0043 (patch) | |
tree | a4744aa4f82b6e9a0a7d019c4112516191aed7c8 /altoslib/AltosIdleMonitor.java | |
parent | 1b97ed2b64bcbcd969124964f1e49837899f1c70 (diff) | |
parent | b63fc05481bf6d57e6385704ce53c1c19afa9c2e (diff) |
Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
Diffstat (limited to 'altoslib/AltosIdleMonitor.java')
-rw-r--r-- | altoslib/AltosIdleMonitor.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/altoslib/AltosIdleMonitor.java b/altoslib/AltosIdleMonitor.java index c816c202..d9d71143 100644 --- a/altoslib/AltosIdleMonitor.java +++ b/altoslib/AltosIdleMonitor.java @@ -91,14 +91,11 @@ public class AltosIdleMonitor extends Thread { } public void abort() throws InterruptedException { - System.out.printf("Attempting to abort monitor thread\n"); while (isAlive()) { - System.out.printf("Interrupting\n"); interrupt(); link.abort_reply(); Thread.sleep(100); } - System.out.printf("Appears to be dead now\n"); join(); } |