Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 0fffa7e0d2a9a05a410697e09191c7dd8e1afc98 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                
                                                            

                                                                        
                                                           

                                            


                                                                                 



























                                                                                 
/*******************************************************************************
 * Copyright (c) 2000, 2005 QNX Software Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     QNX Software Systems - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.debug.core.model;

import org.eclipse.debug.core.DebugException;

/**
 * Provides the ability to resume execution without giving a signal. 
 * This is useful when the program stopped on account of a signal and would 
 * ordinary see the signal when resumed.
 * 
 * @since: Feb 4, 2003
 */
public interface IResumeWithoutSignal
{
	/**
	 * Causes this element to resume its execution ignoring a signal.
	 * Has no effect on an element that is not suspended because of a signal.
	 * 
	 * @exception DebugException on failure. Reasons include:
	 */
	public void resumeWithoutSignal() throws DebugException;

	/**
	 * Returns whether this element can currently be resumed without signal.
	 *
	 * @return whether this element can currently be resumed without signal
	 */
	boolean canResumeWithoutSignal();
}

Back to the top