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

Unified Diff: src/trusted/gdb_rsp/packet.cc

Issue 5633007: This change contains changes that were made on a separate copy of this code,... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 10 years 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: src/trusted/gdb_rsp/packet.cc
===================================================================
--- src/trusted/gdb_rsp/packet.cc (revision 3879)
+++ src/trusted/gdb_rsp/packet.cc (working copy)
@@ -266,6 +266,8 @@
if (!GetRawChar(&seq1)) return false;
if (!GetRawChar(&seq2)) return false;
noelallen_use_chromium 2010/12/07 23:04:44 This looks like it should be removed. Accidental
mlinck 2010/12/10 21:10:27 Done.
+ printf("GetWord8 got chars: %c %c\n", seq1, seq2);
mmortensen 2010/12/07 22:53:58 Having the printf is probably a big help here, sin
mlinck 2010/12/10 21:10:27 removed this
+
// Convert them to ints
if (!NibbleToInt(seq1, &val1)) return false;
if (!NibbleToInt(seq2, &val2)) return false;
@@ -299,6 +301,7 @@
}
bool Packet::GetWord64(uint64_t *ptr) {
+ printf("GetWord64 running \n");
noelallen_use_chromium 2010/12/07 23:04:44 same.
mlinck 2010/12/10 21:10:27 Done.
assert(ptr);
return GetBlock(ptr, sizeof(*ptr));
}

Powered by Google App Engine
This is Rietveld 408576698