remote_gdb.cc (11274:d9a0136ab8cc) remote_gdb.cc (11793:ef606668d247)
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google Inc.
4 * Copyright (c) 2010, 2013 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

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

127/*
128 * $NetBSD: kgdb_stub.c,v 1.8 2001/07/07 22:58:00 wdk Exp $
129 *
130 * Taken from NetBSD
131 *
132 * "Stub" to allow remote cpu to debug over a serial line using gdb.
133 */
134
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google Inc.
4 * Copyright (c) 2010, 2013 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

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

127/*
128 * $NetBSD: kgdb_stub.c,v 1.8 2001/07/07 22:58:00 wdk Exp $
129 *
130 * Taken from NetBSD
131 *
132 * "Stub" to allow remote cpu to debug over a serial line using gdb.
133 */
134
135#include "arch/arm/remote_gdb.hh"
136
135#include <sys/signal.h>
136#include <unistd.h>
137
138#include <string>
139
140#include "arch/arm/decoder.hh"
141#include "arch/arm/pagetable.hh"
142#include "arch/arm/registers.hh"
137#include <sys/signal.h>
138#include <unistd.h>
139
140#include <string>
141
142#include "arch/arm/decoder.hh"
143#include "arch/arm/pagetable.hh"
144#include "arch/arm/registers.hh"
143#include "arch/arm/remote_gdb.hh"
144#include "arch/arm/system.hh"
145#include "arch/arm/utility.hh"
146#include "arch/arm/vtophys.hh"
147#include "base/chunk_generator.hh"
148#include "base/intmath.hh"
149#include "base/remote_gdb.hh"
150#include "base/socket.hh"
151#include "base/trace.hh"

--- 151 unchanged lines hidden ---
145#include "arch/arm/system.hh"
146#include "arch/arm/utility.hh"
147#include "arch/arm/vtophys.hh"
148#include "base/chunk_generator.hh"
149#include "base/intmath.hh"
150#include "base/remote_gdb.hh"
151#include "base/socket.hh"
152#include "base/trace.hh"

--- 151 unchanged lines hidden ---