From owner-cvs-src@FreeBSD.ORG Sun Mar 9 19:14:37 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6F511065672; Sun, 9 Mar 2008 19:14:37 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C92DA8FC17; Sun, 9 Mar 2008 19:14:37 +0000 (UTC) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m29JEbeY061868; Sun, 9 Mar 2008 19:14:37 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m29JEbw1061867; Sun, 9 Mar 2008 19:14:37 GMT (envelope-from phk) Message-Id: <200803091914.m29JEbw1061867@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 9 Mar 2008 19:14:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: 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 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2008 19:14:38 -0000 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)