Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Shared library

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.101
diff -u -r1.101 ChangeLog
--- ChangeLog	17 Jan 2003 00:15:10 -0000	1.101
+++ ChangeLog	17 Jan 2003 21:31:53 -0000
@@ -1,3 +1,9 @@
+2003-01-17 Alain Magloire
+
+	* src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
+	(loadSymbols): new method takes an array of IShareLibrary
+	(loadSymbols): no arguments.
+
 2003-01-16 Mikhail Khodjaiants
 	Implementing the Shared Libraries view.
 	* ICSharedLibrary.java
Index: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java,v
retrieving revision 1.1
diff -u -r1.1 ICDISharedLibraryManager.java
--- src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java	15 Jan 2003 22:24:17 -0000	1.1
+++ src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java	17 Jan 2003 21:31:53 -0000
@@ -22,4 +22,21 @@
 	 * @throws CDIException on failure. Reasons include:
 	 */
 	ICDISharedLibrary[] getSharedLibraries() throws CDIException;
+
+	/**
+	 * load symbols for the specified shared libraries.
+	 * 
+	 * @return the array of loaded shared libraries
+	 * @throws CDIException on failure. Reasons include:
+	 */
+	void loadSymbols(ICDISharedLibrary[] libs) throws CDIException;
+
+	/**
+	 * load symbols of all the shared libs.
+	 * 
+	 * @return the array of loaded shared libraries
+	 * @throws CDIException on failure. Reasons include:
+	 */
+	void loadSymbols() throws CDIException;
+
 }



Back to the top