Home | History | Annotate | Download | only in adb
      1 /* the list of mutexes used by adb */
      2 /* #ifndef __MUTEX_LIST_H
      3  * Do not use an include-guard. This file is included once to declare the locks
      4  * and once in win32 to actually do the runtime initialization.
      5  */
      6 #ifndef ADB_MUTEX
      7 #error ADB_MUTEX not defined when including this file
      8 #endif
      9 ADB_MUTEX(basename_lock)
     10 ADB_MUTEX(dirname_lock)
     11 ADB_MUTEX(transport_lock)
     12 #if ADB_HOST
     13 ADB_MUTEX(local_transports_lock)
     14 #endif
     15 ADB_MUTEX(usb_lock)
     16 
     17 #undef ADB_MUTEX
     18