SyscallTable returns t's syscall table. Preconditions: The caller must be running on the task goroutine, or t.mu must be locked.
()
| 118 | // Preconditions: The caller must be running on the task goroutine, or t.mu |
| 119 | // must be locked. |
| 120 | func (t *Task) SyscallTable() *SyscallTable { |
| 121 | return t.image.st |
| 122 | } |
| 123 | |
| 124 | // Stack returns the userspace stack. |
| 125 | // |
no outgoing calls
no test coverage detected