blob: 01fdd64b1273aa714d704ddeb677e440e7facfda [file] [log] [blame]
Todd Fialae77fce02016-09-04 00:18:56 +00001//===-- NativeProcessDarwin.h --------------------------------- -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef NativeProcessDarwin_h
11#define NativeProcessDarwin_h
12
13// NOTE: this code should only be compiled on Apple Darwin systems. It is
14// not cross-platform code and is not intended to build on any other platform.
15// Therefore, platform-specific headers and code are okay here.
16
17// C includes
18#include <mach/mach_types.h>
19
20// C++ includes
21#include <mutex>
22#include <unordered_set>
23
24// Other libraries and framework includes
25#include "lldb/Core/ArchSpec.h"
Todd Fialae77fce02016-09-04 00:18:56 +000026#include "lldb/Host/Debug.h"
Todd Fialae77fce02016-09-04 00:18:56 +000027#include "lldb/Host/HostThread.h"
28#include "lldb/Host/Pipe.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000029#include "lldb/Host/common/NativeProcessProtocol.h"
Todd Fialae77fce02016-09-04 00:18:56 +000030#include "lldb/Target/MemoryRegionInfo.h"
Zachary Turner5713a052017-03-22 18:40:07 +000031#include "lldb/Utility/FileSpec.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000032#include "lldb/lldb-types.h"
Todd Fialae77fce02016-09-04 00:18:56 +000033
Todd Fialae77fce02016-09-04 00:18:56 +000034#include "LaunchFlavor.h"
35#include "MachException.h"
36#include "NativeThreadDarwin.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000037#include "NativeThreadListDarwin.h"
Todd Fialae77fce02016-09-04 00:18:56 +000038
39namespace lldb_private {
Kate Stoneb9c1b512016-09-06 20:57:50 +000040class Error;
41class Scalar;
Todd Fialae77fce02016-09-04 00:18:56 +000042
Kate Stoneb9c1b512016-09-06 20:57:50 +000043namespace process_darwin {
Todd Fialae77fce02016-09-04 00:18:56 +000044
Kate Stoneb9c1b512016-09-06 20:57:50 +000045/// @class NativeProcessDarwin
46/// @brief Manages communication with the inferior (debugee) process.
47///
48/// Upon construction, this class prepares and launches an inferior
49/// process for debugging.
50///
51/// Changes in the inferior process state are broadcasted.
52class NativeProcessDarwin : public NativeProcessProtocol {
53 friend Error NativeProcessProtocol::Launch(
54 ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
55 MainLoop &mainloop, NativeProcessProtocolSP &process_sp);
Todd Fialae77fce02016-09-04 00:18:56 +000056
Kate Stoneb9c1b512016-09-06 20:57:50 +000057 friend Error NativeProcessProtocol::Attach(
58 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate,
59 MainLoop &mainloop, NativeProcessProtocolSP &process_sp);
Todd Fialae77fce02016-09-04 00:18:56 +000060
Kate Stoneb9c1b512016-09-06 20:57:50 +000061public:
62 ~NativeProcessDarwin() override;
Todd Fialae77fce02016-09-04 00:18:56 +000063
Kate Stoneb9c1b512016-09-06 20:57:50 +000064 // -----------------------------------------------------------------
65 // NativeProcessProtocol Interface
66 // -----------------------------------------------------------------
67 Error Resume(const ResumeActionList &resume_actions) override;
Todd Fialae77fce02016-09-04 00:18:56 +000068
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 Error Halt() override;
Todd Fialae77fce02016-09-04 00:18:56 +000070
Kate Stoneb9c1b512016-09-06 20:57:50 +000071 Error Detach() override;
Todd Fialae77fce02016-09-04 00:18:56 +000072
Kate Stoneb9c1b512016-09-06 20:57:50 +000073 Error Signal(int signo) override;
Todd Fialae77fce02016-09-04 00:18:56 +000074
Kate Stoneb9c1b512016-09-06 20:57:50 +000075 Error Interrupt() override;
Todd Fialae77fce02016-09-04 00:18:56 +000076
Kate Stoneb9c1b512016-09-06 20:57:50 +000077 Error Kill() override;
Todd Fialae77fce02016-09-04 00:18:56 +000078
Kate Stoneb9c1b512016-09-06 20:57:50 +000079 Error GetMemoryRegionInfo(lldb::addr_t load_addr,
80 MemoryRegionInfo &range_info) override;
Todd Fialae77fce02016-09-04 00:18:56 +000081
Kate Stoneb9c1b512016-09-06 20:57:50 +000082 Error ReadMemory(lldb::addr_t addr, void *buf, size_t size,
83 size_t &bytes_read) override;
Todd Fialae77fce02016-09-04 00:18:56 +000084
Kate Stoneb9c1b512016-09-06 20:57:50 +000085 Error ReadMemoryWithoutTrap(lldb::addr_t addr, void *buf, size_t size,
86 size_t &bytes_read) override;
Todd Fialae77fce02016-09-04 00:18:56 +000087
Kate Stoneb9c1b512016-09-06 20:57:50 +000088 Error WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
89 size_t &bytes_written) override;
Todd Fialae77fce02016-09-04 00:18:56 +000090
Kate Stoneb9c1b512016-09-06 20:57:50 +000091 Error AllocateMemory(size_t size, uint32_t permissions,
92 lldb::addr_t &addr) override;
Todd Fialae77fce02016-09-04 00:18:56 +000093
Kate Stoneb9c1b512016-09-06 20:57:50 +000094 Error DeallocateMemory(lldb::addr_t addr) override;
Todd Fialae77fce02016-09-04 00:18:56 +000095
Kate Stoneb9c1b512016-09-06 20:57:50 +000096 lldb::addr_t GetSharedLibraryInfoAddress() override;
Todd Fialae77fce02016-09-04 00:18:56 +000097
Kate Stoneb9c1b512016-09-06 20:57:50 +000098 size_t UpdateThreads() override;
Todd Fialae77fce02016-09-04 00:18:56 +000099
Kate Stoneb9c1b512016-09-06 20:57:50 +0000100 bool GetArchitecture(ArchSpec &arch) const override;
Todd Fialae77fce02016-09-04 00:18:56 +0000101
Kate Stoneb9c1b512016-09-06 20:57:50 +0000102 Error SetBreakpoint(lldb::addr_t addr, uint32_t size, bool hardware) override;
Todd Fialae77fce02016-09-04 00:18:56 +0000103
Kate Stoneb9c1b512016-09-06 20:57:50 +0000104 void DoStopIDBumped(uint32_t newBumpId) override;
Todd Fialae77fce02016-09-04 00:18:56 +0000105
Kate Stoneb9c1b512016-09-06 20:57:50 +0000106 Error GetLoadedModuleFileSpec(const char *module_path,
107 FileSpec &file_spec) override;
Todd Fialae77fce02016-09-04 00:18:56 +0000108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109 Error GetFileLoadAddress(const llvm::StringRef &file_name,
110 lldb::addr_t &load_addr) override;
Todd Fialae77fce02016-09-04 00:18:56 +0000111
Kate Stoneb9c1b512016-09-06 20:57:50 +0000112 NativeThreadDarwinSP GetThreadByID(lldb::tid_t id);
Todd Fialae77fce02016-09-04 00:18:56 +0000113
Kate Stoneb9c1b512016-09-06 20:57:50 +0000114 task_t GetTask() const { return m_task; }
Todd Fialae77fce02016-09-04 00:18:56 +0000115
Kate Stoneb9c1b512016-09-06 20:57:50 +0000116 // -----------------------------------------------------------------
117 // Interface used by NativeRegisterContext-derived classes.
118 // -----------------------------------------------------------------
119 static Error PtraceWrapper(int req, lldb::pid_t pid, void *addr = nullptr,
120 void *data = nullptr, size_t data_size = 0,
121 long *result = nullptr);
Todd Fialae77fce02016-09-04 00:18:56 +0000122
Kate Stoneb9c1b512016-09-06 20:57:50 +0000123 bool SupportHardwareSingleStepping() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000124
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125protected:
126 // -----------------------------------------------------------------
127 // NativeProcessProtocol protected interface
128 // -----------------------------------------------------------------
129 Error
130 GetSoftwareBreakpointTrapOpcode(size_t trap_opcode_size_hint,
131 size_t &actual_opcode_size,
132 const uint8_t *&trap_opcode_bytes) override;
Todd Fialae77fce02016-09-04 00:18:56 +0000133
Kate Stoneb9c1b512016-09-06 20:57:50 +0000134private:
135 // -----------------------------------------------------------------
136 /// Mach task-related Member Variables
137 // -----------------------------------------------------------------
Todd Fialae77fce02016-09-04 00:18:56 +0000138
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 // The task port for the inferior process.
140 mutable task_t m_task;
Todd Fialae77fce02016-09-04 00:18:56 +0000141
Kate Stoneb9c1b512016-09-06 20:57:50 +0000142 // True if the inferior process did an exec since we started
143 // monitoring it.
144 bool m_did_exec;
Todd Fialae77fce02016-09-04 00:18:56 +0000145
Kate Stoneb9c1b512016-09-06 20:57:50 +0000146 // The CPU type of this process.
147 mutable cpu_type_t m_cpu_type;
Todd Fialae77fce02016-09-04 00:18:56 +0000148
Kate Stoneb9c1b512016-09-06 20:57:50 +0000149 // -----------------------------------------------------------------
150 /// Exception/Signal Handling Member Variables
151 // -----------------------------------------------------------------
Todd Fialae77fce02016-09-04 00:18:56 +0000152
Kate Stoneb9c1b512016-09-06 20:57:50 +0000153 // Exception port on which we will receive child exceptions
154 mach_port_t m_exception_port;
Todd Fialae77fce02016-09-04 00:18:56 +0000155
Kate Stoneb9c1b512016-09-06 20:57:50 +0000156 // Saved state of the child exception port prior to us installing
157 // our own intercepting port.
158 MachException::PortInfo m_exc_port_info;
Todd Fialae77fce02016-09-04 00:18:56 +0000159
Kate Stoneb9c1b512016-09-06 20:57:50 +0000160 // The thread that runs the Mach exception read and reply handler.
161 pthread_t m_exception_thread;
Todd Fialae77fce02016-09-04 00:18:56 +0000162
Kate Stoneb9c1b512016-09-06 20:57:50 +0000163 // TODO see if we can remove this if we get the exception collection
164 // and distribution to happen in a single-threaded fashion.
165 std::recursive_mutex m_exception_messages_mutex;
Todd Fialae77fce02016-09-04 00:18:56 +0000166
Kate Stoneb9c1b512016-09-06 20:57:50 +0000167 // A collection of exception messages caught when listening to the
168 // exception port.
169 MachException::Message::collection m_exception_messages;
Todd Fialae77fce02016-09-04 00:18:56 +0000170
Kate Stoneb9c1b512016-09-06 20:57:50 +0000171 // When we call MachProcess::Interrupt(), we want to send this
172 // signal (if non-zero).
173 int m_sent_interrupt_signo;
Todd Fialae77fce02016-09-04 00:18:56 +0000174
Kate Stoneb9c1b512016-09-06 20:57:50 +0000175 // If we resume the process and still haven't received our
176 // interrupt signal (if this is non-zero).
177 int m_auto_resume_signo;
Todd Fialae77fce02016-09-04 00:18:56 +0000178
Kate Stoneb9c1b512016-09-06 20:57:50 +0000179 // -----------------------------------------------------------------
180 /// Thread-related Member Variables
181 // -----------------------------------------------------------------
182 NativeThreadListDarwin m_thread_list;
183 ResumeActionList m_thread_actions;
Todd Fialae77fce02016-09-04 00:18:56 +0000184
Kate Stoneb9c1b512016-09-06 20:57:50 +0000185 // -----------------------------------------------------------------
186 /// Process Lifetime Member Variable
187 // -----------------------------------------------------------------
Todd Fialae77fce02016-09-04 00:18:56 +0000188
Kate Stoneb9c1b512016-09-06 20:57:50 +0000189 // The pipe over which the waitpid thread and the main loop will
190 // communicate.
191 Pipe m_waitpid_pipe;
Todd Fialae77fce02016-09-04 00:18:56 +0000192
Kate Stoneb9c1b512016-09-06 20:57:50 +0000193 // The thread that runs the waitpid handler.
194 pthread_t m_waitpid_thread;
Todd Fialae77fce02016-09-04 00:18:56 +0000195
Kate Stoneb9c1b512016-09-06 20:57:50 +0000196 // waitpid reader callback handle.
197 MainLoop::ReadHandleUP m_waitpid_reader_handle;
Todd Fialae77fce02016-09-04 00:18:56 +0000198
199#if 0
200 ArchSpec m_arch;
201
202 LazyBool m_supports_mem_region;
203 std::vector<MemoryRegionInfo> m_mem_region_cache;
204
205 lldb::tid_t m_pending_notification_tid;
206
207 // List of thread ids stepping with a breakpoint with the address of
208 // the relevan breakpoint
209 std::map<lldb::tid_t, lldb::addr_t>
210 m_threads_stepping_with_breakpoint;
211#endif
212
Kate Stoneb9c1b512016-09-06 20:57:50 +0000213 // -----------------------------------------------------------------
214 // Private Instance Methods
215 // -----------------------------------------------------------------
216 NativeProcessDarwin(lldb::pid_t pid, int pty_master_fd);
Todd Fialae77fce02016-09-04 00:18:56 +0000217
Kate Stoneb9c1b512016-09-06 20:57:50 +0000218 // -----------------------------------------------------------------
219 /// Finalize the launch.
220 ///
221 /// This method associates the NativeProcessDarwin instance with
222 /// the host process that was just launched. It peforms actions
223 /// like attaching a listener to the inferior exception port,
224 /// ptracing the process, and the like.
225 ///
226 /// @param[in] launch_flavor
227 /// The launch flavor that was used to launch the process.
228 ///
229 /// @param[in] main_loop
230 /// The main loop that will run the process monitor. Work
231 /// that needs to be done (e.g. reading files) gets registered
232 /// here along with callbacks to process the work.
233 ///
234 /// @return
235 /// Any error that occurred during the aforementioned
236 /// operations. Failure here will force termination of the
237 /// launched process and debugging session.
238 // -----------------------------------------------------------------
239 Error FinalizeLaunch(LaunchFlavor launch_flavor, MainLoop &main_loop);
Todd Fialae77fce02016-09-04 00:18:56 +0000240
Kate Stoneb9c1b512016-09-06 20:57:50 +0000241 Error SaveExceptionPortInfo();
Todd Fialae77fce02016-09-04 00:18:56 +0000242
Kate Stoneb9c1b512016-09-06 20:57:50 +0000243 void ExceptionMessageReceived(const MachException::Message &message);
Todd Fialae77fce02016-09-04 00:18:56 +0000244
Kate Stoneb9c1b512016-09-06 20:57:50 +0000245 void MaybeRaiseThreadPriority();
Todd Fialae77fce02016-09-04 00:18:56 +0000246
Kate Stoneb9c1b512016-09-06 20:57:50 +0000247 Error StartExceptionThread();
Todd Fialae77fce02016-09-04 00:18:56 +0000248
Kate Stoneb9c1b512016-09-06 20:57:50 +0000249 Error SendInferiorExitStatusToMainLoop(::pid_t pid, int status);
Todd Fialae77fce02016-09-04 00:18:56 +0000250
Kate Stoneb9c1b512016-09-06 20:57:50 +0000251 Error HandleWaitpidResult();
Todd Fialae77fce02016-09-04 00:18:56 +0000252
Kate Stoneb9c1b512016-09-06 20:57:50 +0000253 bool ProcessUsingSpringBoard() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000254
Kate Stoneb9c1b512016-09-06 20:57:50 +0000255 bool ProcessUsingBackBoard() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000256
Kate Stoneb9c1b512016-09-06 20:57:50 +0000257 static void *ExceptionThread(void *arg);
Todd Fialae77fce02016-09-04 00:18:56 +0000258
Kate Stoneb9c1b512016-09-06 20:57:50 +0000259 void *DoExceptionThread();
Todd Fialae77fce02016-09-04 00:18:56 +0000260
Kate Stoneb9c1b512016-09-06 20:57:50 +0000261 lldb::addr_t GetDYLDAllImageInfosAddress(Error &error) const;
Todd Fialae77fce02016-09-04 00:18:56 +0000262
Kate Stoneb9c1b512016-09-06 20:57:50 +0000263 static uint32_t GetCPUTypeForLocalProcess(::pid_t pid);
Todd Fialae77fce02016-09-04 00:18:56 +0000264
Kate Stoneb9c1b512016-09-06 20:57:50 +0000265 uint32_t GetCPUType() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000266
Kate Stoneb9c1b512016-09-06 20:57:50 +0000267 task_t ExceptionMessageBundleComplete();
Todd Fialae77fce02016-09-04 00:18:56 +0000268
Kate Stoneb9c1b512016-09-06 20:57:50 +0000269 void StartSTDIOThread();
Todd Fialae77fce02016-09-04 00:18:56 +0000270
Kate Stoneb9c1b512016-09-06 20:57:50 +0000271 Error StartWaitpidThread(MainLoop &main_loop);
Todd Fialae77fce02016-09-04 00:18:56 +0000272
Kate Stoneb9c1b512016-09-06 20:57:50 +0000273 static void *WaitpidThread(void *arg);
Todd Fialae77fce02016-09-04 00:18:56 +0000274
Kate Stoneb9c1b512016-09-06 20:57:50 +0000275 void *DoWaitpidThread();
Todd Fialae77fce02016-09-04 00:18:56 +0000276
Kate Stoneb9c1b512016-09-06 20:57:50 +0000277 task_t TaskPortForProcessID(Error &error, bool force = false) const;
Todd Fialae77fce02016-09-04 00:18:56 +0000278
Kate Stoneb9c1b512016-09-06 20:57:50 +0000279 /// Attaches to an existing process. Forms the
280 /// implementation of Process::DoAttach.
281 void AttachToInferior(MainLoop &mainloop, lldb::pid_t pid, Error &error);
Todd Fialae77fce02016-09-04 00:18:56 +0000282
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283 ::pid_t Attach(lldb::pid_t pid, Error &error);
Todd Fialae77fce02016-09-04 00:18:56 +0000284
Kate Stoneb9c1b512016-09-06 20:57:50 +0000285 Error PrivateResume();
Todd Fialae77fce02016-09-04 00:18:56 +0000286
Kate Stoneb9c1b512016-09-06 20:57:50 +0000287 Error ReplyToAllExceptions();
Todd Fialae77fce02016-09-04 00:18:56 +0000288
Kate Stoneb9c1b512016-09-06 20:57:50 +0000289 Error ResumeTask();
Todd Fialae77fce02016-09-04 00:18:56 +0000290
Kate Stoneb9c1b512016-09-06 20:57:50 +0000291 bool IsTaskValid() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000292
Kate Stoneb9c1b512016-09-06 20:57:50 +0000293 bool IsTaskValid(task_t task) const;
Todd Fialae77fce02016-09-04 00:18:56 +0000294
Kate Stoneb9c1b512016-09-06 20:57:50 +0000295 mach_port_t GetExceptionPort() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000296
Kate Stoneb9c1b512016-09-06 20:57:50 +0000297 bool IsExceptionPortValid() const;
Todd Fialae77fce02016-09-04 00:18:56 +0000298
Kate Stoneb9c1b512016-09-06 20:57:50 +0000299 Error GetTaskBasicInfo(task_t task, struct task_basic_info *info) const;
Todd Fialae77fce02016-09-04 00:18:56 +0000300
Kate Stoneb9c1b512016-09-06 20:57:50 +0000301 Error SuspendTask();
Todd Fialae77fce02016-09-04 00:18:56 +0000302
Kate Stoneb9c1b512016-09-06 20:57:50 +0000303 static Error SetDefaultPtraceOpts(const lldb::pid_t);
Todd Fialae77fce02016-09-04 00:18:56 +0000304
Kate Stoneb9c1b512016-09-06 20:57:50 +0000305 static void *MonitorThread(void *baton);
Todd Fialae77fce02016-09-04 00:18:56 +0000306
Kate Stoneb9c1b512016-09-06 20:57:50 +0000307 void MonitorCallback(lldb::pid_t pid, bool exited, int signal, int status);
Todd Fialae77fce02016-09-04 00:18:56 +0000308
Kate Stoneb9c1b512016-09-06 20:57:50 +0000309 void WaitForNewThread(::pid_t tid);
Todd Fialae77fce02016-09-04 00:18:56 +0000310
Kate Stoneb9c1b512016-09-06 20:57:50 +0000311 void MonitorSIGTRAP(const siginfo_t &info, NativeThreadDarwin &thread);
Todd Fialae77fce02016-09-04 00:18:56 +0000312
Kate Stoneb9c1b512016-09-06 20:57:50 +0000313 void MonitorTrace(NativeThreadDarwin &thread);
Todd Fialae77fce02016-09-04 00:18:56 +0000314
Kate Stoneb9c1b512016-09-06 20:57:50 +0000315 void MonitorBreakpoint(NativeThreadDarwin &thread);
Todd Fialae77fce02016-09-04 00:18:56 +0000316
Kate Stoneb9c1b512016-09-06 20:57:50 +0000317 void MonitorWatchpoint(NativeThreadDarwin &thread, uint32_t wp_index);
Todd Fialae77fce02016-09-04 00:18:56 +0000318
Kate Stoneb9c1b512016-09-06 20:57:50 +0000319 void MonitorSignal(const siginfo_t &info, NativeThreadDarwin &thread,
320 bool exited);
Todd Fialae77fce02016-09-04 00:18:56 +0000321
Kate Stoneb9c1b512016-09-06 20:57:50 +0000322 Error SetupSoftwareSingleStepping(NativeThreadDarwin &thread);
Todd Fialae77fce02016-09-04 00:18:56 +0000323
324#if 0
325 static ::ProcessMessage::CrashReason
326 GetCrashReasonForSIGSEGV(const siginfo_t *info);
327
328 static ::ProcessMessage::CrashReason
329 GetCrashReasonForSIGILL(const siginfo_t *info);
330
331 static ::ProcessMessage::CrashReason
332 GetCrashReasonForSIGFPE(const siginfo_t *info);
333
334 static ::ProcessMessage::CrashReason
335 GetCrashReasonForSIGBUS(const siginfo_t *info);
336#endif
337
Kate Stoneb9c1b512016-09-06 20:57:50 +0000338 bool HasThreadNoLock(lldb::tid_t thread_id);
Todd Fialae77fce02016-09-04 00:18:56 +0000339
Kate Stoneb9c1b512016-09-06 20:57:50 +0000340 bool StopTrackingThread(lldb::tid_t thread_id);
Todd Fialae77fce02016-09-04 00:18:56 +0000341
Kate Stoneb9c1b512016-09-06 20:57:50 +0000342 NativeThreadDarwinSP AddThread(lldb::tid_t thread_id);
Todd Fialae77fce02016-09-04 00:18:56 +0000343
Kate Stoneb9c1b512016-09-06 20:57:50 +0000344 Error GetSoftwareBreakpointPCOffset(uint32_t &actual_opcode_size);
Todd Fialae77fce02016-09-04 00:18:56 +0000345
Kate Stoneb9c1b512016-09-06 20:57:50 +0000346 Error FixupBreakpointPCAsNeeded(NativeThreadDarwin &thread);
Todd Fialae77fce02016-09-04 00:18:56 +0000347
Kate Stoneb9c1b512016-09-06 20:57:50 +0000348 /// Writes a siginfo_t structure corresponding to the given thread
349 /// ID to the memory region pointed to by @p siginfo.
350 Error GetSignalInfo(lldb::tid_t tid, void *siginfo);
351
352 /// Writes the raw event message code (vis-a-vis PTRACE_GETEVENTMSG)
353 /// corresponding to the given thread ID to the memory pointed to
354 /// by @p message.
355 Error GetEventMessage(lldb::tid_t tid, unsigned long *message);
356
357 void NotifyThreadDeath(lldb::tid_t tid);
358
359 Error Detach(lldb::tid_t tid);
360
361 // This method is requests a stop on all threads which are still
362 // running. It sets up a deferred delegate notification, which will
363 // fire once threads report as stopped. The triggerring_tid will be
364 // set as the current thread (main stop reason).
365 void StopRunningThreads(lldb::tid_t triggering_tid);
366
367 // Notify the delegate if all threads have stopped.
368 void SignalIfAllThreadsStopped();
369
370 // Resume the given thread, optionally passing it the given signal.
371 // The type of resume operation (continue, single-step) depends on
372 // the state parameter.
373 Error ResumeThread(NativeThreadDarwin &thread, lldb::StateType state,
374 int signo);
375
376 void ThreadWasCreated(NativeThreadDarwin &thread);
377
378 void SigchldHandler();
379};
380
381} // namespace process_darwin
Todd Fialae77fce02016-09-04 00:18:56 +0000382} // namespace lldb_private
383
384#endif /* NativeProcessDarwin_h */