Home
last modified time | relevance | path

Searched refs:jp_1 (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/usr.bin/make/
Dmain.c130 static int jp_0 = -1, jp_1 = -1; /* ends of parent job pipe */ variable
379 if (sscanf(argvalue, "%d,%d%c", &jp_0, &jp_1, &end) != 2) { in MainParseArgJobsInternal()
386 (fcntl(jp_1, F_GETFD, 0) < 0)) { in MainParseArgJobsInternal()
388 jp_1 = -1; in MainParseArgJobsInternal()
1522 TokenPool_Init(maxJobTokens, jp_0, jp_1); in main_PrepareMaking()
1524 jp_0, jp_1, opts.maxJobs, maxJobTokens, opts.compatMake ? 1 : 0); in main_PrepareMaking()
Djob.c2762 TokenPool_InitClient(int jp_0, int jp_1) in TokenPool_InitClient() argument
2765 tokenPoolJob.outPipe = jp_1; in TokenPool_InitClient()
2767 (void)fcntl(jp_1, F_SETFD, FD_CLOEXEC); in TokenPool_InitClient()
2795 TokenPool_Init(int max_tokens, int jp_0, int jp_1) in TokenPool_Init() argument
2797 if (jp_0 >= 0 && jp_1 >= 0) in TokenPool_Init()
2798 TokenPool_InitClient(jp_0, jp_1); in TokenPool_Init()