Home | History | Annotate | Download | only in sandbox

Lines Matching refs:ok

116     int ok;
117 ok = pthread_mutex_lock(&mutex);
118 assert(ok == 0);
120 ok = pthread_cond_signal(&cond);
121 assert(ok == 0);
122 ok = pthread_mutex_unlock(&mutex);
123 assert(ok == 0);
253 int ok;
255 ok = fstat(fd, &statbuf);
256 if (ok < 0) {