Home
last modified time | relevance | path

Searched refs:first_free_id (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/bionic/
Dpthread_mutex.cpp271 static int first_free_id = -1; // If not -1, refer to the first node in the free PIMutex list. variable
282 if (first_free_id != -1) { in AllocIdLocked()
283 int result = first_free_id; in AllocIdLocked()
284 first_free_id = IdToNode(result).next_free_id; in AllocIdLocked()
321 IdToNode(id).next_free_id = first_free_id; in FreeId()
322 first_free_id = id; in FreeId()