diff options
Diffstat (limited to 'source/Plugins/Process/POSIX/ProcessPOSIX.h')
| -rw-r--r-- | source/Plugins/Process/POSIX/ProcessPOSIX.h | 19 | 
1 files changed, 7 insertions, 12 deletions
diff --git a/source/Plugins/Process/POSIX/ProcessPOSIX.h b/source/Plugins/Process/POSIX/ProcessPOSIX.h index 7f705d33fe68..033accf17f29 100644 --- a/source/Plugins/Process/POSIX/ProcessPOSIX.h +++ b/source/Plugins/Process/POSIX/ProcessPOSIX.h @@ -18,7 +18,6 @@  // Other libraries and framework includes  #include "lldb/Target/Process.h" -#include "lldb/Target/UnixSignals.h"  #include "ProcessMessage.h"  class ProcessMonitor; @@ -33,7 +32,8 @@ public:      // Constructors and destructors      //------------------------------------------------------------------      ProcessPOSIX(lldb_private::Target& target, -                 lldb_private::Listener &listener); +                 lldb_private::Listener &listener, +                 lldb_private::UnixSignalsSP &unix_signals_sp);      virtual      ~ProcessPOSIX(); @@ -141,6 +141,9 @@ public:      virtual size_t      PutSTDIN(const char *buf, size_t len, lldb_private::Error &error); +    const lldb::DataBufferSP +    GetAuxvData () override; +      //--------------------------------------------------------------------------      // ProcessPOSIX internal API. @@ -151,12 +154,7 @@ public:      ProcessMonitor &      GetMonitor() { assert(m_monitor); return *m_monitor; } -    lldb_private::UnixSignals & -    GetUnixSignals(); - -    const char * -    GetFilePath(const lldb_private::ProcessLaunchInfo::FileAction *file_action, -                const char *default_path); +    const char *GetFilePath(const lldb_private::FileAction *file_action, const char *default_path);      /// Stops all threads in the process.      /// The \p stop_tid parameter indicates the thread which initiated the stop. @@ -164,7 +162,7 @@ public:      StopAllThreads(lldb::tid_t stop_tid);      /// Adds the thread to the list of threads for which we have received the initial stopping signal. -    /// The \p stop_tid paramter indicates the thread which the stop happened for. +    /// The \p stop_tid parameter indicates the thread which the stop happened for.      bool      AddThreadForInitialStopIfNeeded(lldb::tid_t stop_tid); @@ -191,9 +189,6 @@ protected:      /// Drive any exit events to completion.      bool m_exit_now; -    /// OS-specific signal set. -    lldb_private::UnixSignals m_signals; -      /// Returns true if the process has exited.      bool HasExited();  | 
