mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
cleanup: remove SetDead function
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
This commit is contained in:
parent
cd1356d9ea
commit
f8f6f7c2a0
2 changed files with 3 additions and 8 deletions
|
@ -366,13 +366,6 @@ func (s *State) IsRemovalInProgress() bool {
|
|||
return res
|
||||
}
|
||||
|
||||
// SetDead sets the container state to "dead"
|
||||
func (s *State) SetDead() {
|
||||
s.Lock()
|
||||
s.Dead = true
|
||||
s.Unlock()
|
||||
}
|
||||
|
||||
// IsDead returns whether the Dead flag is set. Used by Container to check whether a container is dead.
|
||||
func (s *State) IsDead() bool {
|
||||
s.Lock()
|
||||
|
|
|
@ -109,7 +109,9 @@ func TestStateRunStop(t *testing.T) {
|
|||
}
|
||||
|
||||
// Set the state to dead and removed.
|
||||
s.SetDead()
|
||||
s.Lock()
|
||||
s.Dead = true
|
||||
s.Unlock()
|
||||
s.SetRemoved()
|
||||
|
||||
// Wait for removed status or timeout.
|
||||
|
|
Loading…
Add table
Reference in a new issue