Home | History | Annotate | Download | only in pkill

Lines Matching defs:fh

678 	FILE *fh;
681 fh = fopen(pidfile, "r");
682 if (fh == NULL)
690 if (flock(fileno(fh), LOCK_EX | LOCK_NB) == 0) {
691 (void)fclose(fh);
701 if (fgets(line, sizeof(line), fh) == NULL) {
702 if (feof(fh)) {
703 (void)fclose(fh);
706 (void)fclose(fh);
709 (void)fclose(fh);