Merge "adb: make darwin build with thread safety analysis." am: 971e6585a6
am: b80ef5e6fd
am: 5e0b56adfa
Change-Id: I9bf8d41c65c87992f74586e5c6b189f0cffb4776
This commit is contained in:
commit
fcfa8731c3
|
@ -38,6 +38,7 @@
|
|||
|
||||
#include <android-base/logging.h>
|
||||
#include <android-base/stringprintf.h>
|
||||
#include <android-base/thread_annotations.h>
|
||||
|
||||
#include "adb.h"
|
||||
#include "transport.h"
|
||||
|
@ -429,7 +430,7 @@ static void RunLoopThread() {
|
|||
VLOG(USB) << "RunLoopThread done";
|
||||
}
|
||||
|
||||
static void usb_cleanup() {
|
||||
static void usb_cleanup() NO_THREAD_SAFETY_ANALYSIS {
|
||||
VLOG(USB) << "usb_cleanup";
|
||||
// Wait until usb operations in RunLoopThread finish, and prevent further operations.
|
||||
operate_device_lock.lock();
|
||||
|
|
Loading…
Reference in New Issue