summaryrefslogtreecommitdiffstats
path: root/usr.bin/xargs
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2013-05-10 03:49:05 +0000
committereadler <eadler@FreeBSD.org>2013-05-10 03:49:05 +0000
commit7eb6dc1bda304d1c84dbbf27c0198269c94e580b (patch)
treec5f07c6c2af43d4f410e6c36d8a5cbbeda395551 /usr.bin/xargs
parent56def3d68d612ab479869fc64af58e12ff1fb811 (diff)
downloadFreeBSD-src-7eb6dc1bda304d1c84dbbf27c0198269c94e580b.zip
FreeBSD-src-7eb6dc1bda304d1c84dbbf27c0198269c94e580b.tar.gz
Style(9) changes fo xargs.c
Diffstat (limited to 'usr.bin/xargs')
-rw-r--r--usr.bin/xargs/xargs.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c
index e204528..6bd3e9f 100644
--- a/usr.bin/xargs/xargs.c
+++ b/usr.bin/xargs/xargs.c
@@ -670,12 +670,14 @@ pids_init(void)
static int
pids_empty(void)
{
+
return (curprocs == 0);
}
static int
pids_full(void)
{
+
return (curprocs >= maxprocs);
}
@@ -709,7 +711,6 @@ findfreeslot(void)
if ((slot = findslot(NOPID)) < 0)
errx(1, "internal error: no free pid slot");
-
return (slot);
}
@@ -721,13 +722,13 @@ findslot(pid_t pid)
for (slot = 0; slot < maxprocs; slot++)
if (childpids[slot] == pid)
return (slot);
-
return (-1);
}
static void
clearslot(int slot)
{
+
childpids[slot] = NOPID;
}
@@ -762,6 +763,7 @@ prompt(void)
static void
usage(void)
{
+
fprintf(stderr,
"usage: xargs [-0opt] [-E eofstr] [-I replstr [-R replacements] [-S replsize]]\n"
" [-J replstr] [-L number] [-n number [-x]] [-P maxprocs]\n"
OpenPOWER on IntegriCloud