1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Corrected command description. This was accidentally given the description for -file-exec-file

This commit is contained in:
John Cortell 2010-05-04 21:49:17 +00:00
parent 32b01dbe7e
commit af69e71a83

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2009 Ericsson and others. * Copyright (c) 2010 Ericsson and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -14,14 +14,14 @@ package org.eclipse.cdt.dsf.mi.service.command.commands;
import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext; import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext;
import org.eclipse.cdt.dsf.mi.service.command.output.MIInfo; import org.eclipse.cdt.dsf.mi.service.command.output.MIInfo;
/** /**
* -file-exec-and-symbols [FILE] * -file-exec-and-symbols [FILE]
* *
* Specify the executable file to be debugged. Unlike `-file-exec-and-symbols', * Specify the executable file to be debugged. This file is the one from which
* the symbol table is not read from this file. If used without argument, GDB * the symbol table is also read. If no file is specified, the command clears
* clears the information about the executable file. No output is produced, * the executable and symbol information. If breakpoints are set when using this
* except a completion notification. * command with no arguments, gdb will produce error messages. Otherwise, no
* output is produced, except a completion notification.
*/ */
public class MIFileExecAndSymbols extends MICommand<MIInfo> public class MIFileExecAndSymbols extends MICommand<MIInfo>
{ {