remote_gdb.cc (5543:3af77710f397) remote_gdb.cc (5567:8fc3b004b0df)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

152#include "arch/x86/remote_gdb.hh"
153#include "base/remote_gdb.hh"
154#include "base/socket.hh"
155#include "base/trace.hh"
156#include "config/full_system.hh"
157#include "cpu/thread_context.hh"
158
159using namespace std;
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

152#include "arch/x86/remote_gdb.hh"
153#include "base/remote_gdb.hh"
154#include "base/socket.hh"
155#include "base/trace.hh"
156#include "config/full_system.hh"
157#include "cpu/thread_context.hh"
158
159using namespace std;
160using namespace TheISA;
160using namespace X86ISA;
161
162RemoteGDB::RemoteGDB(System *_system, ThreadContext *c)
163 : BaseRemoteGDB(_system, c, NumGDBRegs)
164{}
165
166bool RemoteGDB::acc(Addr va, size_t len)
167{
168 panic("Remote gdb acc not implemented in x86!\n");

--- 21 unchanged lines hidden ---
161
162RemoteGDB::RemoteGDB(System *_system, ThreadContext *c)
163 : BaseRemoteGDB(_system, c, NumGDBRegs)
164{}
165
166bool RemoteGDB::acc(Addr va, size_t len)
167{
168 panic("Remote gdb acc not implemented in x86!\n");

--- 21 unchanged lines hidden ---