| 964 | } |
| 965 | |
| 966 | void Shutdown() |
| 967 | { |
| 968 | Atomic::Dec32(&running); |
| 969 | Threading::JoinThread(thread); |
| 970 | Threading::CloseThread(thread); |
| 971 | thread = 0; |
| 972 | |
| 973 | { |
| 974 | SCOPED_LOCK(lock); |
| 975 | Android::shutdownAdb(); |
| 976 | } |
| 977 | } |
| 978 | |
| 979 | struct Command |
| 980 | { |
no test coverage detected