public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master:        * CountDownLatch.java (await): Mark as synchronized.
@ 2007-11-23 11:09 mark
  0 siblings, 0 replies; only message in thread
From: mark @ 2007-11-23 11:09 UTC (permalink / raw)
  To: frysk-cvs

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-11-23 11:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-23 11:09 [SCM] master: * CountDownLatch.java (await): Mark as synchronized mark

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).