提交 a59c67b7 编写于 作者: D Derek Parker

Update documentation for Thread struct

上级 e5233e72
...@@ -16,13 +16,14 @@ import ( ...@@ -16,13 +16,14 @@ import (
// a whole, and Status represents the last result of a `wait` call // a whole, and Status represents the last result of a `wait` call
// on this thread. // on this thread.
type Thread struct { type Thread struct {
Id int Id int // Thread ID or mach port
Status *sys.WaitStatus Status *sys.WaitStatus // Status returned from last wait call
CurrentBreakpoint *Breakpoint CurrentBreakpoint *Breakpoint // Breakpoint thread is currently stopped at
dbp *DebuggedProcess
singleStepping bool dbp *DebuggedProcess
running bool singleStepping bool
os *OSSpecificDetails running bool
os *OSSpecificDetails
} }
type Location struct { type Location struct {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册