blob: a77a1118559622ab60181fa317e4347ad1b349b0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Ericsson 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:
* Alvaro Sanchez-Leon (Ericsson AB) - [Memory] Support 16 bit addressable size (Bug 426730)
*******************************************************************************/
package org.eclipse.cdt.dsf.gdb.service;
/**
* Extension interface to provide access to the addressable size of a memory context
*
* @since 4.4
*/
public interface IGDBMemory2 extends IGDBMemory {
/**
* Returns the addressable size (in octets) of the memory specified by the given context
*/
public int getAddressableSize(IMemoryDMContext context);
}