()
| 114 | } |
| 115 | |
| 116 | func (c *Core) Started() bool { |
| 117 | if c.process == nil || c.process.Process == nil { |
| 118 | return false |
| 119 | } |
| 120 | if c.process.ProcessState == nil { |
| 121 | return true |
| 122 | } |
| 123 | return false |
| 124 | } |
| 125 | |
| 126 | func collectUnixSocketPaths(cfg *Config) []string { |
| 127 | if cfg == nil { |