]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/commit
MFC r274116:
authordteske <dteske@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Tue, 25 Nov 2014 13:47:53 +0000 (13:47 +0000)
committerdteske <dteske@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Tue, 25 Nov 2014 13:47:53 +0000 (13:47 +0000)
commitdab6ebbe8aeac43e03caf2d5fdbb2e9c6dc2b502
treec0607e816cf2b819510abb4303a0cd3c21333085
parente07668025702708e79508cfef1521af508bee41a
MFC r274116:

Add new libraries/utilities for data throughput visualization.
dpv(3): dialog progress view library
dpv(1): stream data from stdin or multiple paths with dialog progress view
figpar(3): configuration file parsing library

MFC r274120, r274121, r274123, r274124, r274144, r274146, r274159, r274192,
r274203, r274209, r274226, r274270, and r274851: Fixes following r274116

Reviews:        D714
Relnotes:       New libdpv/libfigpar and dpv(1) utility
Reviewed by:    jelischer, shurd
Discussed at:   MeetBSD California 2014 Vendor/Dev Summit
Discussed on:   -current
Thanks to:      ngie, ian, jelischer, shurd, bapt

git-svn-id: svn://svn.freebsd.org/base/stable/10@275040 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
31 files changed:
Makefile.inc1
gnu/lib/libdialog/Makefile
lib/Makefile
lib/libdpv/Makefile [new file with mode: 0644]
lib/libdpv/dialog_util.c [new file with mode: 0644]
lib/libdpv/dialog_util.h [new file with mode: 0644]
lib/libdpv/dialogrc.c [new file with mode: 0644]
lib/libdpv/dialogrc.h [new file with mode: 0644]
lib/libdpv/dprompt.c [new file with mode: 0644]
lib/libdpv/dprompt.h [new file with mode: 0644]
lib/libdpv/dpv.3 [new file with mode: 0644]
lib/libdpv/dpv.c [new file with mode: 0644]
lib/libdpv/dpv.h [new file with mode: 0644]
lib/libdpv/dpv_private.h [new file with mode: 0644]
lib/libdpv/status.c [new file with mode: 0644]
lib/libdpv/status.h [new file with mode: 0644]
lib/libdpv/util.c [new file with mode: 0644]
lib/libdpv/util.h [new file with mode: 0644]
lib/libfigpar/Makefile [new file with mode: 0644]
lib/libfigpar/figpar.3 [new file with mode: 0644]
lib/libfigpar/figpar.c [new file with mode: 0644]
lib/libfigpar/figpar.h [new file with mode: 0644]
lib/libfigpar/string_m.c [new file with mode: 0644]
lib/libfigpar/string_m.h [new file with mode: 0644]
share/mk/bsd.libnames.mk
sys/sys/param.h
usr.bin/Makefile
usr.bin/dpv/Makefile [new file with mode: 0644]
usr.bin/dpv/dpv.1 [new file with mode: 0644]
usr.bin/dpv/dpv.c [new file with mode: 0644]
usr.bin/dpv/dpv_util.h [new file with mode: 0644]