Lines Matching refs:L3
129 Mutexes: L1, L2, L3, L4
135 C owns L3
136 D blocked on L3
142 E->L4->D->L3->C->L2->B->L1->A
156 E->L4->D->L3->C->L2-+
175 E->L4->D->L3->C-+
239 L1, L2, and L3, and four separate functions func1, func2, func3 and func4.
240 The following shows a locking order of L1->L2->L3, but may not actually
266 mutex_lock(L3);
270 mutex_unlock(L3);
276 mutex_lock(L3);
280 mutex_unlock(L3);
288 D owns L3
289 C blocked on L3
295 And thus we have the chain A->L1->B->L2->C->L3->D.