Searched refs:maxprocs (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/usr.bin/xargs/
H A Dxargs.c95 static int curprocs, maxprocs; variable
156 maxprocs = 1;
188 maxprocs = strtonum(optarg, 0, INT_MAX, &errstr);
193 if (maxprocs == 0 || maxprocs > rl.rlim_cur)
194 maxprocs = rl.rlim_cur;
696 if ((childpids = malloc(maxprocs * sizeof(*childpids))) == NULL)
699 for (i = 0; i < maxprocs; i++)
714 return (curprocs >= maxprocs);
755 for (slot = 0; slot < maxprocs; slo
[all...]

Completed in 116 milliseconds