mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
New Command from Don Howard, MITargetDownload.
This commit is contained in:
parent
4ea7546869
commit
b28d409cb4
1 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
/* MI
|
||||
|
||||
(c) 2002 Copyright RedHat Inc
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
package org.eclipse.cdt.debug.mi.core.command;
|
||||
|
||||
/**
|
||||
*
|
||||
* -target-download
|
||||
*
|
||||
* Load the executable to the remote target. This command takes no args.
|
||||
*
|
||||
*
|
||||
* Loads the executable onto the remote target. It prints out an
|
||||
* update message every half second, which includes the fields:
|
||||
*
|
||||
* +download,{section=".text",section-size="6668",total-size="9880"}
|
||||
* +download,{section=".text",section-sent="512",section-size="6668",
|
||||
* total-sent="512",total-size="9880"}
|
||||
*
|
||||
*/
|
||||
public class MITargetDownload extends MICommand
|
||||
{
|
||||
public MITargetDownload() {
|
||||
super("-target-download");
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue