remote_gdb.cc (7087:fb8d5786ff30) remote_gdb.cc (8229:78bf55f23338)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 24 unchanged lines hidden (view full) ---

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include <sys/signal.h>
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 24 unchanged lines hidden (view full) ---

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include <sys/signal.h>
41#include <unistd.h>
41
42#include <string>
42
43#include <string>
43#include <unistd.h>
44
44
45#include "arch/vtophys.hh"
46#include "arch/x86/remote_gdb.hh"
45#include "arch/x86/remote_gdb.hh"
46#include "arch/vtophys.hh"
47#include "base/remote_gdb.hh"
48#include "base/socket.hh"
49#include "base/trace.hh"
50#include "config/full_system.hh"
51#include "cpu/thread_context.hh"
52
53using namespace std;
54using namespace X86ISA;

--- 29 unchanged lines hidden ---
47#include "base/remote_gdb.hh"
48#include "base/socket.hh"
49#include "base/trace.hh"
50#include "config/full_system.hh"
51#include "cpu/thread_context.hh"
52
53using namespace std;
54using namespace X86ISA;

--- 29 unchanged lines hidden ---