public inbox for frysk-cvs@sourceware.org help / color / mirror / Atom feed
From: mark@sourceware.org To: frysk-cvs@sourceware.org Subject: [SCM] master: * CountDownLatch.java (await): Mark as synchronized. Date: Fri, 23 Nov 2007 11:09:00 -0000 [thread overview] Message-ID: <20071123110934.25337.qmail@sourceware.org> (raw) The branch, master has been updated via 0a57bd86cdd2366aeadf6833c871331ba0c9ae41 (commit) from 08ac5754d8dfc76ec585a61611b315f17e08acc0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit 0a57bd86cdd2366aeadf6833c871331ba0c9ae41 Author: Mark Wielaard <mwielaard@redhat.com> Date: Fri Nov 23 12:09:16 2007 +0100 * CountDownLatch.java (await): Mark as synchronized. ----------------------------------------------------------------------- Summary of changes: frysk-core/frysk/util/ChangeLog | 7 ++++++- frysk-core/frysk/util/CountDownLatch.java | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) First 500 lines of diff: diff --git a/frysk-core/frysk/util/ChangeLog b/frysk-core/frysk/util/ChangeLog index 0eb921d..f3b20f5 100644 --- a/frysk-core/frysk/util/ChangeLog +++ b/frysk-core/frysk/util/ChangeLog @@ -1,3 +1,7 @@ +2007-11-23 Mark Wielaard <mwielaard@redhat.com> + + * CountDownLatch.java (await): Mark as synchronized. + 2007-11-22 Tim Moore <timoore@redhat.com> * CountDownLatch.java (await): Loop to avoid spurious wakeup. @@ -11,7 +15,8 @@ * X8664LinuxElfCorefile.java: Fix typo; "eflags" -> "rflags". 2007-11-09 Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> - * LinuxElfCorefileFactory.java: Removed Power little endian. + + * LinuxElfCorefileFactory.java: Removed Power little endian. 2007-10-22 Phil Muldoon <pmuldoon@redhat.com> diff --git a/frysk-core/frysk/util/CountDownLatch.java b/frysk-core/frysk/util/CountDownLatch.java index b191782..f9d548f 100644 --- a/frysk-core/frysk/util/CountDownLatch.java +++ b/frysk-core/frysk/util/CountDownLatch.java @@ -53,7 +53,7 @@ public class CountDownLatch { this.count = count; } - public void await() + public synchronized void await() throws InterruptedException { while (count != 0) { try { @@ -102,4 +102,4 @@ public class CountDownLatch { public String toString() { return super.toString() + " [Count=" + getCount() + "]"; } -} \ No newline at end of file +} hooks/post-receive -- frysk system monitor/debugger
reply other threads:[~2007-11-23 11:09 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20071123110934.25337.qmail@sourceware.org \ --to=mark@sourceware.org \ --cc=frysk-cvs@sourceware.org \ --cc=frysk@sourceware.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).