Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: experimental/linux_debug_server/debugger/nacl-gdb_server/gdb_registers.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/linux_debug_server/debugger/nacl-gdb_server/gdb_registers.h
diff --git a/experimental/linux_debug_server/debugger/nacl-gdb_server/gdb_registers.h b/experimental/linux_debug_server/debugger/nacl-gdb_server/gdb_registers.h
deleted file mode 100755
index d5462993989026a33b0a9ae7602abb78827421d3..0000000000000000000000000000000000000000
--- a/experimental/linux_debug_server/debugger/nacl-gdb_server/gdb_registers.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-#ifndef DEBUGGER_NACL_GDB_SERVER_GDB_REGISTERS_H_
-#define DEBUGGER_NACL_GDB_SERVER_GDB_REGISTERS_H_
-#include <sys/ptrace.h>
-#include <sys/types.h>
-#include <sys/user.h>
-
-#include "debugger/base/debug_blob.h"
-
-namespace rsp {
-/// Converts from GDB RSP packet registers to linux thread user_regs_struct.
-/// @param[in] gdb_regs blob with packed registers in GDB RSP format
-/// @param[out] ct destination for the registers
-void GdbRegistersToCONTEXT(const debug::Blob& gdb_regs, user_regs_struct* ct);
-
-/// Converts from linux thread user_regs_struct to GDB RSP packet registers.
-/// @param[in] ct thread CONTEXT structure filled with registers content
-/// @param[out] gdb_regs destination for the registers
-void CONTEXTToGdbRegisters(const user_regs_struct& ct, debug::Blob* gdb_regs);
-} // namespace rsp
-
-#endif // DEBUGGER_NACL_GDB_SERVER_GDB_REGISTERS_H_
-

Powered by Google App Engine
This is Rietveld 408576698