Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Dallaway2021-04-18 20:24:53 +0000
committerJohn Dallaway2021-04-25 18:39:03 +0000
commit5e9fc0024228992f9f434c503ef14f8ad89c84ee (patch)
tree976464b97c280785ffd3092c2e268160c1098730 /doc/org.eclipse.cdt.doc.isv/guide
parent3c58527d534b44c1f67fe5c85d28be90e81789a8 (diff)
downloadorg.eclipse.cdt-5e9fc0024228992f9f434c503ef14f8ad89c84ee.tar.gz
org.eclipse.cdt-5e9fc0024228992f9f434c503ef14f8ad89c84ee.tar.xz
org.eclipse.cdt-5e9fc0024228992f9f434c503ef14f8ad89c84ee.zip
Bug 572944: Set GDB process attributes
Diffstat (limited to 'doc/org.eclipse.cdt.doc.isv/guide')
-rw-r--r--doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
index 25317cb3d35..9f9eddf3944 100644
--- a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
+++ b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
@@ -56,6 +56,12 @@
<li><a href="#binaryparsers">32-bit Binary parsers with 64-bit replacements</a></li>
<li><a href="#baudrate">BaudRate enum in org.eclipse.cdt.serial</a></li>
</ol>
+ <p>
+ Planned Removals after June 2023
+ </p>
+ <ol>
+ <li><a href="#gdbBackendDebuggerCommandLine">Rework of API to determine GDB command line in org.eclipse.cdt.dsf.gdb</a></li>
+ </ol>
<hr>
@@ -394,6 +400,26 @@
<p>
See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563108" target="_blank">Bug 563108</a>.
</p>
+
+ <h3>API Removals after June 2023</h3>
+
+ <h3>1. <a name="gdbBackendDebuggerCommandLine">Rework of API to determine GDB command line in org.eclipse.cdt.dsf.gdb</a></h3>
+ <p>
+ To support presentation of the GDB command line within the process property page, a public method
+ getDebuggerCommandLineArray() has been added to the org.eclipse.cdt.dsf.gdb.service.IGDBBackend interface
+ and the following redundant protected methods will be removed:
+ </p>
+ <ul>
+ <li>org.eclipse.cdt.dsf.gdb.service.GDBBackend.getDebuggerCommandLine()</li>
+ <li>org.eclipse.cdt.dsf.gdb.service.GDBBackend.getGDBCommandLineArray()</li>
+ </ul>
+ <p>
+ Extenders that override the above protected methods should override
+ org.eclipse.cdt.dsf.gdb.service.IGDBBackend.getDebuggerCommandLineArray() instead.
+ </p>
+ <p>
+ See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=572944" target="_blank">Bug 572944</a>.
+ </p>
</body>
</html>

Back to the top