(ch chan *seccomp.Notif)
| 260 | } |
| 261 | |
| 262 | func (e *Engine) drainSafeMode(ch chan *seccomp.Notif) { |
| 263 | for n := range ch { |
| 264 | if n != nil { |
| 265 | n.Skip() |
| 266 | } |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | func (e *Engine) handle(n *seccomp.Notif) { |
| 271 | handler := process.Handlers[n.Syscall] |