Home | History | Annotate | Download | only in vm

Lines Matching full:lock

44  * lock.  Performs no error checking.
51 * Lock owner field. Contains the thread id of the thread currently
52 * holding the lock.
59 * Lock recursion count field. Contains a count of the numer of times
60 * a lock has been recursively acquired.
74 * Initialize a Lock to the proper starting value.
79 #define DVM_LOCK_INIT(lock) \
80 do { *(lock) = DVM_LOCK_INITIAL_THIN_VALUE; } while (0)
83 * Returns true if the lock has been fattened.
85 #define IS_LOCK_FAT(lock) (LW_SHAPE(*(lock)) == LW_SHAPE_FAT)
144 * Get the thread that holds the lock on the specified object. The
147 * The caller must lock the thread list before calling here.