(r *Remote)
| 634 | } |
| 635 | |
| 636 | func (c *RemoteCollection) trackRemote(r *Remote) { |
| 637 | c.Lock() |
| 638 | c.remotes[r.ptr] = r |
| 639 | c.Unlock() |
| 640 | |
| 641 | remotePointers.track(r) |
| 642 | } |
| 643 | |
| 644 | func (c *RemoteCollection) untrackRemote(r *Remote) { |
| 645 | c.Lock() |
no test coverage detected