cvs commit: src/usr.sbin/fifolog Makefile Makefile.inc flint.lnt
src/usr.sbin/fifolog/fifolog_create Makefile fifolog.1
fifolog_create.c src/usr.sbin/fifolog/fifolog_reader Makefile
fifolog_reader.c src/usr.sbin/fifolog/fifolog_writer Makefile ...
Poul-Henning Kamp
phk at FreeBSD.org
Sun Mar 9 19:14:38 UTC 2008
phk 2008-03-09 19:14:37 UTC
FreeBSD src repository
Added files:
usr.sbin/fifolog Makefile Makefile.inc flint.lnt
usr.sbin/fifolog/fifolog_create Makefile fifolog.1
fifolog_create.c
usr.sbin/fifolog/fifolog_reader Makefile fifolog_reader.c
usr.sbin/fifolog/fifolog_writer Makefile fifolog_writer.c
usr.sbin/fifolog/lib Makefile fifolog.h fifolog_create.c
fifolog_int.c fifolog_reader.c
fifolog_write.h fifolog_write_poll.c
getdate.y libfifolog.h libfifolog_int.h
miniobj.h
Log:
Add the fifolog tools to FreeBSD.
Quoth the man-page:
Fifologs provide a compact round-robin circular storage for recording
text and binary information to permanent storage in a bounded and pre-
dictable fashion, time and space wise.
Not yet connected to the build, but feel free to test & review.
Revision Changes Path
1.1 +10 -0 src/usr.sbin/fifolog/Makefile (new)
1.1 +13 -0 src/usr.sbin/fifolog/Makefile.inc (new)
1.1 +22 -0 src/usr.sbin/fifolog/fifolog_create/Makefile (new)
1.1 +210 -0 src/usr.sbin/fifolog/fifolog_create/fifolog.1 (new)
1.1 +105 -0 src/usr.sbin/fifolog/fifolog_create/fifolog_create.c (new)
1.1 +21 -0 src/usr.sbin/fifolog/fifolog_reader/Makefile (new)
1.1 +170 -0 src/usr.sbin/fifolog/fifolog_reader/fifolog_reader.c (new)
1.1 +16 -0 src/usr.sbin/fifolog/fifolog_writer/Makefile (new)
1.1 +105 -0 src/usr.sbin/fifolog/fifolog_writer/fifolog_writer.c (new)
1.1 +49 -0 src/usr.sbin/fifolog/flint.lnt (new)
1.1 +17 -0 src/usr.sbin/fifolog/lib/Makefile (new)
1.1 +138 -0 src/usr.sbin/fifolog/lib/fifolog.h (new)
1.1 +122 -0 src/usr.sbin/fifolog/lib/fifolog_create.c (new)
1.1 +276 -0 src/usr.sbin/fifolog/lib/fifolog_int.c (new)
1.1 +315 -0 src/usr.sbin/fifolog/lib/fifolog_reader.c (new)
1.1 +65 -0 src/usr.sbin/fifolog/lib/fifolog_write.h (new)
1.1 +416 -0 src/usr.sbin/fifolog/lib/fifolog_write_poll.c (new)
1.1 +889 -0 src/usr.sbin/fifolog/lib/getdate.y (new)
1.1 +62 -0 src/usr.sbin/fifolog/lib/libfifolog.h (new)
1.1 +45 -0 src/usr.sbin/fifolog/lib/libfifolog_int.h (new)
1.1 +66 -0 src/usr.sbin/fifolog/lib/miniobj.h (new)
More information about the cvs-src
mailing list