Lines Matching refs:L2
129 Mutexes: L1, L2, L3, L4
133 B owns L2
134 C blocked on L2
142 E->L4->D->L3->C->L2->B->L1->A
156 E->L4->D->L3->C->L2-+
168 blocked on mutex L2:
170 G->L2->B->L1->A
176 +->L2-+
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
255 mutex_lock(L2);
259 mutex_unlock(L2);
265 mutex_lock(L2);
271 mutex_unlock(L2);
290 C owns L2
291 B blocked on L2
295 And thus we have the chain A->L1->B->L2->C->L3->D.