Lines Matching defs:path
469 char path[64];
471 (void) sprintf(path, "/tmp/pipe_%ld.%dA",
473 if (mknod(path, 0600, S_IFIFO) == -1) {
478 ts->ts_in = open(path, O_RDONLY);
479 ts->ts_out = open(path, O_WRONLY);
481 ts->ts_in = open(path, O_RDONLY);
482 ts->ts_out2 = open(path, O_WRONLY);
484 (void) sprintf(path, "/tmp/pipe_%ld.%dB",
486 if (mknod(path, 0600, S_IFIFO) == -1) {
490 ts->ts_in2 = open(path, O_RDONLY);
491 ts->ts_out = open(path, O_WRONLY);
501 char path[64];
503 (void) sprintf(path, "/tmp/pipe_%ld.%dA", getpid(), pthread_self());
504 (void) unlink(path);
505 (void) sprintf(path, "/tmp/pipe_%ld.%dB", getpid(), pthread_self());
506 (void) unlink(path);