diff options
Diffstat (limited to 'source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
| -rw-r--r-- | source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 10 | 
1 files changed, 8 insertions, 2 deletions
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index e104b7191eab..b18ac5b1723e 100644 --- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -291,6 +291,12 @@ protected:      void      SetLastStopPacket (const StringExtractorGDBRemote &response); +    bool +    ParsePythonTargetDefinition(const lldb_private::FileSpec &target_definition_fspec); +     +    bool +    ParseRegisters(lldb_private::ScriptInterpreterObject *registers_array); +      //------------------------------------------------------------------      /// Broadcaster event bits definitions.      //------------------------------------------------------------------ @@ -326,13 +332,13 @@ protected:      tid_sig_collection m_continue_C_tids; // 'C' for continue with signal      tid_collection m_continue_s_tids;                  // 's' for step      tid_sig_collection m_continue_S_tids; // 'S' for step with signal -    lldb::addr_t m_dispatch_queue_offsets_addr;      size_t m_max_memory_size;       // The maximum number of bytes to read/write when reading and writing memory      MMapMap m_addr_to_mmap_size;      lldb::BreakpointSP m_thread_create_bp_sp;      bool m_waiting_for_attach;      bool m_destroy_tried_resuming;      lldb::CommandObjectSP m_command_sp; +    int64_t m_breakpoint_pc_offset;      bool      StartAsyncThread (); @@ -340,7 +346,7 @@ protected:      void      StopAsyncThread (); -    static void * +    static lldb::thread_result_t      AsyncThread (void *arg);      static bool  | 
