diff options
Diffstat (limited to 'source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp')
| -rw-r--r-- | source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp index d2a6503caf8e0..9b410d8b5b8c2 100644 --- a/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp +++ b/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp @@ -313,6 +313,14 @@ ThreadGDBRemote::PrivateSetRegisterValue (uint32_t reg, StringExtractor &respons  }  bool +ThreadGDBRemote::PrivateSetRegisterValue (uint32_t reg, uint64_t regval) +{ +    GDBRemoteRegisterContext *gdb_reg_ctx = static_cast<GDBRemoteRegisterContext *>(GetRegisterContext ().get()); +    assert (gdb_reg_ctx); +    return gdb_reg_ctx->PrivateSetRegisterValue (reg, regval); +} + +bool  ThreadGDBRemote::CalculateStopInfo ()  {      ProcessSP process_sp (GetProcess()); | 
