(tid uint64)
| 408 | } |
| 409 | |
| 410 | func (c *Manager) AddThread(tid uint64) error { |
| 411 | v := Value{ |
| 412 | filename: cgroupThreads, |
| 413 | value: tid, |
| 414 | } |
| 415 | return writeValues(c.path, []Value{v}) |
| 416 | } |
| 417 | |
| 418 | // Kill will try to forcibly exit all of the processes in the cgroup. This is |
| 419 | // equivalent to sending a SIGKILL to every process. On kernels 5.14 and greater |
nothing calls this directly
no test coverage detected