(executablePath string)
| 270 | } |
| 271 | |
| 272 | func (s *serverImpl) notifyExecutableUpdate(executablePath string) { |
| 273 | for _, si := range s.shellInfoMap { |
| 274 | si.executablesToUpdate[executablePath] = true |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | func (s *serverImpl) handleAttach(req *AttachRequest, _ *util.Warner) (rsp AttachResponse, err error) { |
| 279 | s.mutex.Lock() |
no outgoing calls
no test coverage detected