Index: src/trusted/debug_stub/platform.h |
=================================================================== |
--- src/trusted/debug_stub/platform.h (revision 9612) |
+++ src/trusted/debug_stub/platform.h (working copy) |
@@ -17,6 +17,8 @@ |
#include "native_client/src/include/portability.h" |
#include "native_client/src/trusted/debug_stub/transport.h" |
+struct NaClApp; |
+ |
namespace port { |
class IPlatform { |
@@ -29,7 +31,8 @@ |
// page if needed to provide access. It should only return false if |
// the page is not mapped into the debugged process. |
static bool GetMemory(uint64_t address, uint32_t length, void *dst); |
- static bool SetMemory(uint64_t address, uint32_t length, void *src); |
+ static bool SetMemory(struct NaClApp *nap, uint64_t address, uint32_t length, |
+ void *src); |
}; |
} // namespace port |