mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 13:05:22 +02:00
[192696] Deadlock when opening RSE Perspective
This commit is contained in:
parent
5a658c7473
commit
00d13882d9
2 changed files with 5 additions and 4 deletions
|
@ -77,14 +77,15 @@ tail -50 $log
|
||||||
if [ -d /home/data/httpd/archive.eclipse.org/dsdp/tm/downloads ]; then
|
if [ -d /home/data/httpd/archive.eclipse.org/dsdp/tm/downloads ]; then
|
||||||
cd /home/data/httpd/archive.eclipse.org/dsdp/tm/downloads
|
cd /home/data/httpd/archive.eclipse.org/dsdp/tm/downloads
|
||||||
cvs -q update -RPd >> $log 2>&1
|
cvs -q update -RPd >> $log 2>&1
|
||||||
chgrp dsdp-tmadmin * CVS/*
|
chgrp dsdp-tmadmin * CVS/* 2>/dev/null
|
||||||
cd /home/data/httpd/download.eclipse.org/dsdp/tm/downloads
|
cd /home/data/httpd/download.eclipse.org/dsdp/tm/downloads
|
||||||
cvs -q update -RPd >> $log 2>&1
|
cvs -q update -RPd >> $log 2>&1
|
||||||
chgrp dsdp-tmadmin * CVS/*
|
chgrp dsdp-tmadmin * CVS/*
|
||||||
|
|
||||||
#Fixup permissions and group id on download.eclpse.org (just to be safe)
|
#Fixup permissions and group id on download.eclpse.org (just to be safe)
|
||||||
chgrp -R dsdp-tmadmin drops/${buildType}*${daystamp}*
|
echo "Fixup: chgrp -R dsdp-tmadmin drops/${buildType}*-${daystamp}*"
|
||||||
chmod -R g+w drops/${buildType}*${daystamp}*
|
chgrp -R dsdp-tmadmin drops/${buildType}*-${daystamp}*
|
||||||
|
chmod -R g+w drops/${buildType}*-${daystamp}*
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Check the publishing
|
#Check the publishing
|
||||||
|
|
|
@ -1673,7 +1673,7 @@ public class SystemRegistry implements ISystemRegistry
|
||||||
subSystems[idx] = factory.createSubSystem(conn, true, interestingPages); // give it the opportunity to create a subsystem
|
subSystems[idx] = factory.createSubSystem(conn, true, interestingPages); // give it the opportunity to create a subsystem
|
||||||
}
|
}
|
||||||
FireNewHostEvents fire = new FireNewHostEvents(conn, subSystems, this);
|
FireNewHostEvents fire = new FireNewHostEvents(conn, subSystems, this);
|
||||||
Display.getDefault().syncExec(fire);
|
Display.getDefault().asyncExec(fire);
|
||||||
}
|
}
|
||||||
conn.commit();
|
conn.commit();
|
||||||
SystemPreferencesManager.setConnectionNamesOrder(); // update preferences order list
|
SystemPreferencesManager.setConnectionNamesOrder(); // update preferences order list
|
||||||
|
|
Loading…
Add table
Reference in a new issue