Home | History | Annotate | Download | only in src

Lines Matching defs:front

300     register struct _XCVList *front = *list;
304 xthread_self(), front);
311 if (front) { /* check "front" for paranoia */
312 *list = front->next;
313 if (*tail == &front->next) /* did we free the last elt? */
316 front->next = dpy->lock->free_cvls;
317 dpy->lock->free_cvls = front;
320 xcondition_clear(front->cv);
321 Xfree(front->cv);
322 Xfree(front);
326 /* signal new front after it is in place */