stop tells a running vserver that it should quit.
()
| 517 | |
| 518 | // stop tells a running vserver that it should quit. |
| 519 | func (v *vserver) stop() { |
| 520 | select { |
| 521 | case v.quit <- true: |
| 522 | default: |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | // updateConfig queues a vserver configuration update for processing. This |
| 527 | // will block if a configuration update is already pending. |
no outgoing calls
no test coverage detected