Exec signals the container to exec the users process at the end of the init.
()
| 225 | |
| 226 | // Exec signals the container to exec the users process at the end of the init. |
| 227 | func (c *Container) Exec() error { |
| 228 | c.m.Lock() |
| 229 | defer c.m.Unlock() |
| 230 | return c.exec() |
| 231 | } |
| 232 | |
| 233 | func (c *Container) exec() error { |
| 234 | path := filepath.Join(c.stateDir, execFifoFilename) |