HomeSort by: relevance | last modified time | path
    Searched defs:nlid (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libpthread/
pthread_mutex.c 522 size_t nlid; local in function:pthread__mutex_wakeup
530 for (nlid = 0; cur != NULL; cur = next) {
531 if (nlid == mlid) {
532 (void)_lwp_unpark_all(lids, nlid, NULL);
533 nlid = 0;
537 lids[nlid++] = cur->lid;
542 if (nlid == 1) {
544 } else if (nlid > 1) {
545 (void)_lwp_unpark_all(lids, nlid, NULL);
pthread.c 1293 size_t nlid = 0; local in function:pthread__unpark_all
1296 if (nlid == mlid) {
1297 (void)_lwp_unpark_all(lids, nlid, NULL);
1298 nlid = 0;
1301 lids[nlid++] = target->pt_lid;
1304 if (nlid == 1) {
1306 } else if (nlid > 1) {
1307 (void)_lwp_unpark_all(lids, nlid, NULL);

Completed in 17 milliseconds