remote_gdb.cc (11274:d9a0136ab8cc) remote_gdb.cc (11793:ef606668d247)
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google, Inc.
4 * Copyright (c) 2010 ARM Limited
5 * All rights reserved
6 *
7 * The license below extends only to copyright in the software and shall
8 * not be construed as granting a license to any other intellectual

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

128/*
129 * $NetBSD: kgdb_stub.c,v 1.8 2001/07/07 22:58:00 wdk Exp $
130 *
131 * Taken from NetBSD
132 *
133 * "Stub" to allow remote cpu to debug over a serial line using gdb.
134 */
135
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google, Inc.
4 * Copyright (c) 2010 ARM Limited
5 * All rights reserved
6 *
7 * The license below extends only to copyright in the software and shall
8 * not be construed as granting a license to any other intellectual

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

128/*
129 * $NetBSD: kgdb_stub.c,v 1.8 2001/07/07 22:58:00 wdk Exp $
130 *
131 * Taken from NetBSD
132 *
133 * "Stub" to allow remote cpu to debug over a serial line using gdb.
134 */
135
136#include "arch/mips/remote_gdb.hh"
137
136#include <sys/signal.h>
137#include <unistd.h>
138
139#include <string>
140
141#include "arch/mips/decoder.hh"
138#include <sys/signal.h>
139#include <unistd.h>
140
141#include <string>
142
143#include "arch/mips/decoder.hh"
142#include "arch/mips/remote_gdb.hh"
143#include "arch/mips/vtophys.hh"
144#include "cpu/thread_state.hh"
145#include "debug/GDBAcc.hh"
146#include "debug/GDBMisc.hh"
147#include "mem/page_table.hh"
148#include "sim/full_system.hh"
149
150using namespace std;

--- 60 unchanged lines hidden ---
144#include "arch/mips/vtophys.hh"
145#include "cpu/thread_state.hh"
146#include "debug/GDBAcc.hh"
147#include "debug/GDBMisc.hh"
148#include "mem/page_table.hh"
149#include "sim/full_system.hh"
150
151using namespace std;

--- 60 unchanged lines hidden ---