()
| 42 | } |
| 43 | |
| 44 | func (c *Celer) RootFS() context.RootFS { |
| 45 | // Must return exactly nil if RootFS is none. |
| 46 | // otherwise, the result of RootFS() will not be nil. |
| 47 | if c.platform.RootFS == nil { |
| 48 | return nil |
| 49 | } |
| 50 | return c.platform.RootFS |
| 51 | } |
| 52 | |
| 53 | func (c *Celer) Jobs() int { |
| 54 | return c.Main.Jobs |
no outgoing calls
no test coverage detected