Searched refs:streamID (Results 1 – 1 of 1) sorted by relevance
1186 int streamID; /* ID of stream opened to do the touch */ in Job_Touch() local1216 streamID = open(file, O_RDWR | O_CREAT, 0666); in Job_Touch()1218 if (streamID >= 0) { in Job_Touch()1225 if (read(streamID, &c, 1) == 1) { in Job_Touch()1226 (void)lseek(streamID, (off_t)0, SEEK_SET); in Job_Touch()1227 while (write(streamID, &c, 1) == -1 && errno == EAGAIN) in Job_Touch()1231 (void)close(streamID); in Job_Touch()