Lines Matching refs:L3
139 Mutexes: L1, L2, L3, L4
145 C owns L3
146 D blocked on L3
152 E->L4->D->L3->C->L2->B->L1->A
166 E->L4->D->L3->C->L2-+
185 E->L4->D->L3->C-+
230 L1, L2, and L3, and four separate functions func1, func2, func3 and func4.
231 The following shows a locking order of L1->L2->L3, but may not actually
257 mutex_lock(L3);
261 mutex_unlock(L3);
267 mutex_lock(L3);
271 mutex_unlock(L3);
279 D owns L3
280 C blocked on L3
286 And thus we have the chain A->L1->B->L2->C->L3->D.