1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-27 10:55:33 +02:00

CoreFileConfiguration supports shared libraries.

This commit is contained in:
Mikhail Khodjaiants 2003-09-08 18:43:02 +00:00
parent cecd8598a0
commit 5ac0a1a30b
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2003-09-09 Mikhail Khodjaiants
CoreFileConfiguration supports shared libraries.
* src/org/eclipse/cdt/debug/mi/core/cdi/CoreFileConfiguration.java
2003-08-30 Alain Magloire 2003-08-30 Alain Magloire
Unnecessary synchronization making deadlocks. Should revisit this code. Unnecessary synchronization making deadlocks. Should revisit this code.

View file

@ -69,7 +69,7 @@ public class CoreFileConfiguration implements ICDIConfiguration {
* @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#supportsSharedLibrary() * @see org.eclipse.cdt.debug.core.cdi.ICDIConfiguration#supportsSharedLibrary()
*/ */
public boolean supportsSharedLibrary() { public boolean supportsSharedLibrary() {
return false; return true;
} }
/** /**