cvs commit: src/bin/echo echo.c
Diomidis Spinellis
dds at FreeBSD.org
Sat Oct 11 13:34:44 PDT 2003
dds 2003/10/11 13:34:43 PDT
FreeBSD src repository
Modified files:
bin/echo echo.c
Log:
- Check and report write(2) errors.
- Issue a single writev(2) call instead of multiple write(2)s.
This change improves the inefficiencies introduced when echo
went on an stdio diet.
The following figures are for echoing 1000 arguments.
original stdio-based echo:
0.01 real 0.01 user 0.00 sys
before:
0.05 real 0.00 user 0.04 sys
after:
0.01 real 0.00 user 0.00 sys
Revision Changes Path
1.16 +59 -10 src/bin/echo/echo.c
More information about the cvs-src
mailing list