Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] RE: bug # 44220

Hmm... this is what happens when you copy code.... I'll have to dive into this on a bit more... though the
fix did fix the initial dead lock .

Thanks.

Johan Walles wrote:

David Inglis wrote:

This is a patch to a critical bug I found, it a simple fix so I see no
reason to push to into 1.2

>
> Comments?

The comment contradicting your change (the three lines just above it) should be updated as well...

  Cheers //Johan

Index: src/org/eclipse/cdt/make/ui/MakeContentProvider.java
===================================================================
RCS file:
/home/tools/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/MakeContentProvider.java,v
retrieving revision 1.4
diff -u -r1.4 MakeContentProvider.java
--- src/org/eclipse/cdt/make/ui/MakeContentProvider.java    7 Sep 2003
19:52:20 -0000    1.4
+++ src/org/eclipse/cdt/make/ui/MakeContentProvider.java    6 Oct 2003
13:34:49 -0000
@@ -225,7 +225,7 @@
// Do a sync exec, not an async exec, since the resource delta
            // must be traversed in this method.  It is destroyed
            // when this method returns.
-            ctrl.getDisplay().syncExec(new Runnable() {
+            ctrl.getDisplay().asyncExec(new Runnable() {
                public void run() {
                    processDelta(delta);
                }



_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev


_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev




Back to the top