/******************************************************************************* * Copyright (c) 2008, 2013 Wind River Systems and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * Wind River Systems - initial API and implementation * IBM Corporation - bug fixing *******************************************************************************/ package org.eclipse.debug.examples.core.pda.protocol; /** * Return the contents of the control stack (program counters, function and * variable names). The reply is control stack from oldest to newest as a single string * frame#frame#frame...#frame, where each frame is a string * "filename|pc|function name|variable name|variable name|...|variable name". * *
 *    C: stack {thread_id}
 *    R: {file}|{line}|{function}|{var_1}|{var_2}|...#{file}|{line}|{function}|{var_1}|{var_2}|...#...
 *
 * Errors:
 *    error: invalid thread
 * 
*/ public class PDAStackCommand extends PDACommand { public PDAStackCommand(int threadId) { super("stack " + threadId); //$NON-NLS-1$ } @Override public PDACommandResult createResult(String resultText) { return new PDAStackCommandResult(resultText); } }