1af245d11STodd Fiala //===-- NativeProcessLinux.h ---------------------------------- -*- C++ -*-===//
2af245d11STodd Fiala //
3af245d11STodd Fiala //                     The LLVM Compiler Infrastructure
4af245d11STodd Fiala //
5af245d11STodd Fiala // This file is distributed under the University of Illinois Open Source
6af245d11STodd Fiala // License. See LICENSE.TXT for details.
7af245d11STodd Fiala //
8af245d11STodd Fiala //===----------------------------------------------------------------------===//
9af245d11STodd Fiala 
10af245d11STodd Fiala #ifndef liblldb_NativeProcessLinux_H_
11af245d11STodd Fiala #define liblldb_NativeProcessLinux_H_
12af245d11STodd Fiala 
13af245d11STodd Fiala // C Includes
14af245d11STodd Fiala #include <semaphore.h>
15af245d11STodd Fiala #include <signal.h>
16af245d11STodd Fiala 
17af245d11STodd Fiala // C++ Includes
18af245d11STodd Fiala #include <unordered_set>
19af245d11STodd Fiala 
20af245d11STodd Fiala // Other libraries and framework includes
21af245d11STodd Fiala #include "lldb/Core/ArchSpec.h"
22af245d11STodd Fiala #include "lldb/lldb-types.h"
23af245d11STodd Fiala #include "lldb/Host/Debug.h"
2439de3110SZachary Turner #include "lldb/Host/HostThread.h"
25af245d11STodd Fiala #include "lldb/Host/Mutex.h"
26af245d11STodd Fiala #include "lldb/Target/MemoryRegionInfo.h"
27af245d11STodd Fiala 
28*2fe1d0abSChaoren Lin #include "lldb/Host/common/NativeProcessProtocol.h"
29af245d11STodd Fiala 
30af245d11STodd Fiala namespace lldb_private
31af245d11STodd Fiala {
32af245d11STodd Fiala     class Error;
33af245d11STodd Fiala     class Module;
34fa03ad2eSChaoren Lin     class ThreadStateCoordinator;
35af245d11STodd Fiala     class Scalar;
36af245d11STodd Fiala 
37af245d11STodd Fiala     /// @class NativeProcessLinux
38af245d11STodd Fiala     /// @brief Manages communication with the inferior (debugee) process.
39af245d11STodd Fiala     ///
40af245d11STodd Fiala     /// Upon construction, this class prepares and launches an inferior process for
41af245d11STodd Fiala     /// debugging.
42af245d11STodd Fiala     ///
43af245d11STodd Fiala     /// Changes in the inferior process state are broadcasted.
44af245d11STodd Fiala     class NativeProcessLinux: public NativeProcessProtocol
45af245d11STodd Fiala     {
46af245d11STodd Fiala     public:
47af245d11STodd Fiala 
48af245d11STodd Fiala         // ---------------------------------------------------------------------
49af245d11STodd Fiala         // Public Static Methods
50af245d11STodd Fiala         // ---------------------------------------------------------------------
51af245d11STodd Fiala         static lldb_private::Error
52af245d11STodd Fiala         LaunchProcess (
53af245d11STodd Fiala             Module *exe_module,
54af245d11STodd Fiala             ProcessLaunchInfo &launch_info,
55af245d11STodd Fiala             lldb_private::NativeProcessProtocol::NativeDelegate &native_delegate,
56af245d11STodd Fiala             NativeProcessProtocolSP &native_process_sp);
57af245d11STodd Fiala 
58af245d11STodd Fiala         static lldb_private::Error
59af245d11STodd Fiala         AttachToProcess (
60af245d11STodd Fiala             lldb::pid_t pid,
61af245d11STodd Fiala             lldb_private::NativeProcessProtocol::NativeDelegate &native_delegate,
62af245d11STodd Fiala             NativeProcessProtocolSP &native_process_sp);
63af245d11STodd Fiala 
64af245d11STodd Fiala         // ---------------------------------------------------------------------
65af245d11STodd Fiala         // Public Instance Methods
66af245d11STodd Fiala         // ---------------------------------------------------------------------
67af245d11STodd Fiala 
68af245d11STodd Fiala         ~NativeProcessLinux() override;
69af245d11STodd Fiala 
70af245d11STodd Fiala         // ---------------------------------------------------------------------
71af245d11STodd Fiala         // NativeProcessProtocol Interface
72af245d11STodd Fiala         // ---------------------------------------------------------------------
73af245d11STodd Fiala         Error
74af245d11STodd Fiala         Resume (const ResumeActionList &resume_actions) override;
75af245d11STodd Fiala 
76af245d11STodd Fiala         Error
77af245d11STodd Fiala         Halt () override;
78af245d11STodd Fiala 
79af245d11STodd Fiala         Error
80af245d11STodd Fiala         Detach () override;
81af245d11STodd Fiala 
82af245d11STodd Fiala         Error
83af245d11STodd Fiala         Signal (int signo) override;
84af245d11STodd Fiala 
85af245d11STodd Fiala         Error
86e9547b80SChaoren Lin         Interrupt () override;
87e9547b80SChaoren Lin 
88e9547b80SChaoren Lin         Error
89af245d11STodd Fiala         Kill () override;
90af245d11STodd Fiala 
91af245d11STodd Fiala         Error
92af245d11STodd Fiala         GetMemoryRegionInfo (lldb::addr_t load_addr, MemoryRegionInfo &range_info) override;
93af245d11STodd Fiala 
94af245d11STodd Fiala         Error
95af245d11STodd Fiala         ReadMemory (lldb::addr_t addr, void *buf, lldb::addr_t size, lldb::addr_t &bytes_read) override;
96af245d11STodd Fiala 
97af245d11STodd Fiala         Error
98af245d11STodd Fiala         WriteMemory (lldb::addr_t addr, const void *buf, lldb::addr_t size, lldb::addr_t &bytes_written) override;
99af245d11STodd Fiala 
100af245d11STodd Fiala         Error
101af245d11STodd Fiala         AllocateMemory (lldb::addr_t size, uint32_t permissions, lldb::addr_t &addr) override;
102af245d11STodd Fiala 
103af245d11STodd Fiala         Error
104af245d11STodd Fiala         DeallocateMemory (lldb::addr_t addr) override;
105af245d11STodd Fiala 
106af245d11STodd Fiala         lldb::addr_t
107af245d11STodd Fiala         GetSharedLibraryInfoAddress () override;
108af245d11STodd Fiala 
109af245d11STodd Fiala         size_t
110af245d11STodd Fiala         UpdateThreads () override;
111af245d11STodd Fiala 
112af245d11STodd Fiala         bool
113af245d11STodd Fiala         GetArchitecture (ArchSpec &arch) const override;
114af245d11STodd Fiala 
115af245d11STodd Fiala         Error
116af245d11STodd Fiala         SetBreakpoint (lldb::addr_t addr, uint32_t size, bool hardware) override;
117af245d11STodd Fiala 
118af245d11STodd Fiala         void
119af245d11STodd Fiala         DoStopIDBumped (uint32_t newBumpId) override;
120af245d11STodd Fiala 
121af245d11STodd Fiala         // ---------------------------------------------------------------------
122af245d11STodd Fiala         // Interface used by NativeRegisterContext-derived classes.
123af245d11STodd Fiala         // ---------------------------------------------------------------------
124af245d11STodd Fiala 
125af245d11STodd Fiala         /// Reads the contents from the register identified by the given (architecture
126af245d11STodd Fiala         /// dependent) offset.
127af245d11STodd Fiala         ///
128af245d11STodd Fiala         /// This method is provided for use by RegisterContextLinux derivatives.
12997ccc294SChaoren Lin         Error
130af245d11STodd Fiala         ReadRegisterValue(lldb::tid_t tid, unsigned offset, const char *reg_name,
131af245d11STodd Fiala                           unsigned size, lldb_private::RegisterValue &value);
132af245d11STodd Fiala 
133af245d11STodd Fiala         /// Writes the given value to the register identified by the given
134af245d11STodd Fiala         /// (architecture dependent) offset.
135af245d11STodd Fiala         ///
136af245d11STodd Fiala         /// This method is provided for use by RegisterContextLinux derivatives.
13797ccc294SChaoren Lin         Error
138af245d11STodd Fiala         WriteRegisterValue(lldb::tid_t tid, unsigned offset, const char *reg_name,
139af245d11STodd Fiala                            const lldb_private::RegisterValue &value);
140af245d11STodd Fiala 
141af245d11STodd Fiala         /// Reads all general purpose registers into the specified buffer.
14297ccc294SChaoren Lin         Error
143af245d11STodd Fiala         ReadGPR(lldb::tid_t tid, void *buf, size_t buf_size);
144af245d11STodd Fiala 
145af245d11STodd Fiala         /// Reads generic floating point registers into the specified buffer.
14697ccc294SChaoren Lin         Error
147af245d11STodd Fiala         ReadFPR(lldb::tid_t tid, void *buf, size_t buf_size);
148af245d11STodd Fiala 
149af245d11STodd Fiala         /// Reads the specified register set into the specified buffer.
150af245d11STodd Fiala         /// For instance, the extended floating-point register set.
15197ccc294SChaoren Lin         Error
152af245d11STodd Fiala         ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset);
153af245d11STodd Fiala 
154af245d11STodd Fiala         /// Writes all general purpose registers into the specified buffer.
15597ccc294SChaoren Lin         Error
156af245d11STodd Fiala         WriteGPR(lldb::tid_t tid, void *buf, size_t buf_size);
157af245d11STodd Fiala 
158af245d11STodd Fiala         /// Writes generic floating point registers into the specified buffer.
15997ccc294SChaoren Lin         Error
160af245d11STodd Fiala         WriteFPR(lldb::tid_t tid, void *buf, size_t buf_size);
161af245d11STodd Fiala 
162af245d11STodd Fiala         /// Writes the specified register set into the specified buffer.
163af245d11STodd Fiala         /// For instance, the extended floating-point register set.
16497ccc294SChaoren Lin         Error
165af245d11STodd Fiala         WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset);
166af245d11STodd Fiala 
167af245d11STodd Fiala     protected:
168af245d11STodd Fiala         // ---------------------------------------------------------------------
169af245d11STodd Fiala         // NativeProcessProtocol protected interface
170af245d11STodd Fiala         // ---------------------------------------------------------------------
171af245d11STodd Fiala         Error
172af245d11STodd Fiala         GetSoftwareBreakpointTrapOpcode (size_t trap_opcode_size_hint, size_t &actual_opcode_size, const uint8_t *&trap_opcode_bytes) override;
173af245d11STodd Fiala 
174af245d11STodd Fiala     private:
175af245d11STodd Fiala 
176af245d11STodd Fiala         lldb_private::ArchSpec m_arch;
177af245d11STodd Fiala 
17839de3110SZachary Turner         HostThread m_operation_thread;
17939de3110SZachary Turner         HostThread m_monitor_thread;
180af245d11STodd Fiala 
181af245d11STodd Fiala         // current operation which must be executed on the priviliged thread
182af245d11STodd Fiala         void *m_operation;
183af245d11STodd Fiala         lldb_private::Mutex m_operation_mutex;
184af245d11STodd Fiala 
185af245d11STodd Fiala         // semaphores notified when Operation is ready to be processed and when
186af245d11STodd Fiala         // the operation is complete.
187af245d11STodd Fiala         sem_t m_operation_pending;
188af245d11STodd Fiala         sem_t m_operation_done;
189af245d11STodd Fiala 
190af245d11STodd Fiala         lldb_private::LazyBool m_supports_mem_region;
191af245d11STodd Fiala         std::vector<MemoryRegionInfo> m_mem_region_cache;
192af245d11STodd Fiala         lldb_private::Mutex m_mem_region_cache_mutex;
193af245d11STodd Fiala 
194fa03ad2eSChaoren Lin         std::unique_ptr<ThreadStateCoordinator> m_coordinator_up;
195fa03ad2eSChaoren Lin         HostThread m_coordinator_thread;
196af245d11STodd Fiala 
197af245d11STodd Fiala         struct OperationArgs
198af245d11STodd Fiala         {
199af245d11STodd Fiala             OperationArgs(NativeProcessLinux *monitor);
200af245d11STodd Fiala 
201af245d11STodd Fiala             ~OperationArgs();
202af245d11STodd Fiala 
203af245d11STodd Fiala             NativeProcessLinux *m_monitor;      // The monitor performing the attach.
204af245d11STodd Fiala             sem_t m_semaphore;              // Posted to once operation complete.
205af245d11STodd Fiala             lldb_private::Error m_error;    // Set if process operation failed.
206af245d11STodd Fiala         };
207af245d11STodd Fiala 
208af245d11STodd Fiala         /// @class LauchArgs
209af245d11STodd Fiala         ///
210af245d11STodd Fiala         /// @brief Simple structure to pass data to the thread responsible for
211af245d11STodd Fiala         /// launching a child process.
212af245d11STodd Fiala         struct LaunchArgs : OperationArgs
213af245d11STodd Fiala         {
214af245d11STodd Fiala             LaunchArgs(NativeProcessLinux *monitor,
215af245d11STodd Fiala                     lldb_private::Module *module,
216af245d11STodd Fiala                     char const **argv,
217af245d11STodd Fiala                     char const **envp,
21875f47c3aSTodd Fiala                     const std::string &stdin_path,
21975f47c3aSTodd Fiala                     const std::string &stdout_path,
22075f47c3aSTodd Fiala                     const std::string &stderr_path,
2210bce1b67STodd Fiala                     const char *working_dir,
2220bce1b67STodd Fiala                     const lldb_private::ProcessLaunchInfo &launch_info);
223af245d11STodd Fiala 
224af245d11STodd Fiala             ~LaunchArgs();
225af245d11STodd Fiala 
226af245d11STodd Fiala             lldb_private::Module *m_module; // The executable image to launch.
227af245d11STodd Fiala             char const **m_argv;            // Process arguments.
228af245d11STodd Fiala             char const **m_envp;            // Process environment.
22975f47c3aSTodd Fiala             const std::string &m_stdin_path;  // Redirect stdin if not empty.
23075f47c3aSTodd Fiala             const std::string &m_stdout_path; // Redirect stdout if not empty.
23175f47c3aSTodd Fiala             const std::string &m_stderr_path; // Redirect stderr if not empty.
232af245d11STodd Fiala             const char *m_working_dir;      // Working directory or NULL.
2330bce1b67STodd Fiala             const lldb_private::ProcessLaunchInfo &m_launch_info;
234af245d11STodd Fiala         };
235af245d11STodd Fiala 
236af245d11STodd Fiala         struct AttachArgs : OperationArgs
237af245d11STodd Fiala         {
238af245d11STodd Fiala             AttachArgs(NativeProcessLinux *monitor,
239af245d11STodd Fiala                        lldb::pid_t pid);
240af245d11STodd Fiala 
241af245d11STodd Fiala             ~AttachArgs();
242af245d11STodd Fiala 
243af245d11STodd Fiala             lldb::pid_t m_pid;              // pid of the process to be attached.
244af245d11STodd Fiala         };
245af245d11STodd Fiala 
246af245d11STodd Fiala         // ---------------------------------------------------------------------
247af245d11STodd Fiala         // Private Instance Methods
248af245d11STodd Fiala         // ---------------------------------------------------------------------
249af245d11STodd Fiala         NativeProcessLinux ();
250af245d11STodd Fiala 
251af245d11STodd Fiala         /// Launches an inferior process ready for debugging.  Forms the
252af245d11STodd Fiala         /// implementation of Process::DoLaunch.
253af245d11STodd Fiala         void
254af245d11STodd Fiala         LaunchInferior (
255af245d11STodd Fiala             Module *module,
256af245d11STodd Fiala             char const *argv[],
257af245d11STodd Fiala             char const *envp[],
25875f47c3aSTodd Fiala             const std::string &stdin_path,
25975f47c3aSTodd Fiala             const std::string &stdout_path,
26075f47c3aSTodd Fiala             const std::string &stderr_path,
261af245d11STodd Fiala             const char *working_dir,
2620bce1b67STodd Fiala             const lldb_private::ProcessLaunchInfo &launch_info,
263af245d11STodd Fiala             Error &error);
264af245d11STodd Fiala 
265af245d11STodd Fiala         /// Attaches to an existing process.  Forms the
266af245d11STodd Fiala         /// implementation of Process::DoLaunch.
267af245d11STodd Fiala         void
268af245d11STodd Fiala         AttachToInferior (lldb::pid_t pid, Error &error);
269af245d11STodd Fiala 
270af245d11STodd Fiala         void
271af245d11STodd Fiala         StartLaunchOpThread(LaunchArgs *args, lldb_private::Error &error);
272af245d11STodd Fiala 
273af245d11STodd Fiala         static void *
274af245d11STodd Fiala         LaunchOpThread(void *arg);
275af245d11STodd Fiala 
276af245d11STodd Fiala         static bool
277af245d11STodd Fiala         Launch(LaunchArgs *args);
278af245d11STodd Fiala 
279af245d11STodd Fiala         void
280af245d11STodd Fiala         StartAttachOpThread(AttachArgs *args, lldb_private::Error &error);
281af245d11STodd Fiala 
282af245d11STodd Fiala         static void *
283af245d11STodd Fiala         AttachOpThread(void *args);
284af245d11STodd Fiala 
285af245d11STodd Fiala         static bool
286af245d11STodd Fiala         Attach(AttachArgs *args);
287af245d11STodd Fiala 
28897ccc294SChaoren Lin         static Error
289af245d11STodd Fiala         SetDefaultPtraceOpts(const lldb::pid_t);
290af245d11STodd Fiala 
291af245d11STodd Fiala         static void
292af245d11STodd Fiala         ServeOperation(OperationArgs *args);
293af245d11STodd Fiala 
294af245d11STodd Fiala         static bool
295af245d11STodd Fiala         DupDescriptor(const char *path, int fd, int flags);
296af245d11STodd Fiala 
297af245d11STodd Fiala         static bool
298af245d11STodd Fiala         MonitorCallback(void *callback_baton,
299af245d11STodd Fiala                 lldb::pid_t pid, bool exited, int signal, int status);
300af245d11STodd Fiala 
301af245d11STodd Fiala         void
302af245d11STodd Fiala         MonitorSIGTRAP(const siginfo_t *info, lldb::pid_t pid);
303af245d11STodd Fiala 
304af245d11STodd Fiala         void
305af245d11STodd Fiala         MonitorSignal(const siginfo_t *info, lldb::pid_t pid, bool exited);
306af245d11STodd Fiala 
307af245d11STodd Fiala #if 0
308af245d11STodd Fiala         static ::ProcessMessage::CrashReason
309af245d11STodd Fiala         GetCrashReasonForSIGSEGV(const siginfo_t *info);
310af245d11STodd Fiala 
311af245d11STodd Fiala         static ::ProcessMessage::CrashReason
312af245d11STodd Fiala         GetCrashReasonForSIGILL(const siginfo_t *info);
313af245d11STodd Fiala 
314af245d11STodd Fiala         static ::ProcessMessage::CrashReason
315af245d11STodd Fiala         GetCrashReasonForSIGFPE(const siginfo_t *info);
316af245d11STodd Fiala 
317af245d11STodd Fiala         static ::ProcessMessage::CrashReason
318af245d11STodd Fiala         GetCrashReasonForSIGBUS(const siginfo_t *info);
319af245d11STodd Fiala #endif
320af245d11STodd Fiala 
321af245d11STodd Fiala         void
322af245d11STodd Fiala         DoOperation(void *op);
323af245d11STodd Fiala 
324af245d11STodd Fiala         /// Stops the child monitor thread.
325af245d11STodd Fiala         void
326af245d11STodd Fiala         StopMonitoringChildProcess();
327af245d11STodd Fiala 
328af245d11STodd Fiala         /// Stops the operation thread used to attach/launch a process.
329af245d11STodd Fiala         void
330af245d11STodd Fiala         StopOpThread();
331af245d11STodd Fiala 
332fa03ad2eSChaoren Lin         Error
333fa03ad2eSChaoren Lin         StartCoordinatorThread ();
334fa03ad2eSChaoren Lin 
335fa03ad2eSChaoren Lin         static void*
336fa03ad2eSChaoren Lin         CoordinatorThread (void *arg);
337fa03ad2eSChaoren Lin 
338fa03ad2eSChaoren Lin         void
339fa03ad2eSChaoren Lin         StopCoordinatorThread ();
340fa03ad2eSChaoren Lin 
341af245d11STodd Fiala         /// Stops monitoring the child process thread.
342af245d11STodd Fiala         void
343af245d11STodd Fiala         StopMonitor();
344af245d11STodd Fiala 
345af245d11STodd Fiala         bool
346af245d11STodd Fiala         HasThreadNoLock (lldb::tid_t thread_id);
347af245d11STodd Fiala 
348af245d11STodd Fiala         NativeThreadProtocolSP
349af245d11STodd Fiala         MaybeGetThreadNoLock (lldb::tid_t thread_id);
350af245d11STodd Fiala 
351af245d11STodd Fiala         bool
352af245d11STodd Fiala         StopTrackingThread (lldb::tid_t thread_id);
353af245d11STodd Fiala 
354af245d11STodd Fiala         NativeThreadProtocolSP
355af245d11STodd Fiala         AddThread (lldb::tid_t thread_id);
356af245d11STodd Fiala 
357af245d11STodd Fiala         NativeThreadProtocolSP
358af245d11STodd Fiala         GetOrCreateThread (lldb::tid_t thread_id, bool &created);
359af245d11STodd Fiala 
360af245d11STodd Fiala         Error
361af245d11STodd Fiala         GetSoftwareBreakpointSize (NativeRegisterContextSP context_sp, uint32_t &actual_opcode_size);
362af245d11STodd Fiala 
363af245d11STodd Fiala         Error
364af245d11STodd Fiala         FixupBreakpointPCAsNeeded (NativeThreadProtocolSP &thread_sp);
365af245d11STodd Fiala 
366af245d11STodd Fiala         /// Writes a siginfo_t structure corresponding to the given thread ID to the
367af245d11STodd Fiala         /// memory region pointed to by @p siginfo.
36897ccc294SChaoren Lin         Error
36997ccc294SChaoren Lin         GetSignalInfo(lldb::tid_t tid, void *siginfo);
370af245d11STodd Fiala 
371af245d11STodd Fiala         /// Writes the raw event message code (vis-a-vis PTRACE_GETEVENTMSG)
372af245d11STodd Fiala         /// corresponding to the given thread ID to the memory pointed to by @p
373af245d11STodd Fiala         /// message.
37497ccc294SChaoren Lin         Error
375af245d11STodd Fiala         GetEventMessage(lldb::tid_t tid, unsigned long *message);
376af245d11STodd Fiala 
377af245d11STodd Fiala         /// Resumes the given thread.  If @p signo is anything but
378af245d11STodd Fiala         /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the thread.
37997ccc294SChaoren Lin         Error
380af245d11STodd Fiala         Resume(lldb::tid_t tid, uint32_t signo);
381af245d11STodd Fiala 
382af245d11STodd Fiala         /// Single steps the given thread.  If @p signo is anything but
383af245d11STodd Fiala         /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the thread.
38497ccc294SChaoren Lin         Error
385af245d11STodd Fiala         SingleStep(lldb::tid_t tid, uint32_t signo);
386af245d11STodd Fiala 
387fa03ad2eSChaoren Lin         // ThreadStateCoordinator helper methods.
388511e5cdcSTodd Fiala         void
389fa03ad2eSChaoren Lin         NotifyThreadCreateStopped (lldb::tid_t tid);
390511e5cdcSTodd Fiala 
391511e5cdcSTodd Fiala         void
392fa03ad2eSChaoren Lin         NotifyThreadCreateRunning (lldb::tid_t tid);
393fa03ad2eSChaoren Lin 
394fa03ad2eSChaoren Lin         void
395fa03ad2eSChaoren Lin         NotifyThreadDeath (lldb::tid_t tid);
396fa03ad2eSChaoren Lin 
397fa03ad2eSChaoren Lin         void
398fa03ad2eSChaoren Lin         NotifyThreadStop (lldb::tid_t tid);
399fa03ad2eSChaoren Lin 
400fa03ad2eSChaoren Lin         void
401fa03ad2eSChaoren Lin         CallAfterRunningThreadsStop (lldb::tid_t tid,
402fa03ad2eSChaoren Lin                                      const std::function<void (lldb::tid_t tid)> &call_after_function);
403511e5cdcSTodd Fiala 
40403f12d6bSChaoren Lin         void
40503f12d6bSChaoren Lin         CallAfterRunningThreadsStopWithSkipTID (lldb::tid_t deferred_signal_tid,
40603f12d6bSChaoren Lin                                                 lldb::tid_t skip_stop_request_tid,
40703f12d6bSChaoren Lin                                                 const std::function<void (lldb::tid_t tid)> &call_after_function);
40803f12d6bSChaoren Lin 
409af245d11STodd Fiala         lldb_private::Error
410af245d11STodd Fiala         Detach(lldb::tid_t tid);
41186fd8e45SChaoren Lin 
41286fd8e45SChaoren Lin         lldb_private::Error
41386fd8e45SChaoren Lin         RequestThreadStop (const lldb::pid_t pid, const lldb::tid_t tid);
414af245d11STodd Fiala     };
415af245d11STodd Fiala } // End lldb_private namespace.
416af245d11STodd Fiala 
417af245d11STodd Fiala #endif // #ifndef liblldb_NativeProcessLinux_H_
418