Initial checkin for libpcp_import and PCP::LogImport.
We're not quite there yet, committing this to get some help to fix the
remaining issues.
Changes committed to git://oss.sgi.com/kenj/pcp.git dev
man/man1/pmimport.1 | 11
man/man3/pmimport.3 | 36 --
src/GNUmakefile | 4
src/cpan/GNUmakefile | 2
src/cpan/LogImport/.gitignore | 7
src/cpan/LogImport/Changes | 5
src/cpan/LogImport/GNUmakefile | 82 +++++
src/cpan/LogImport/LogImport.pm | 90 +++++
src/cpan/LogImport/LogImport.xs | 118 +++++++
src/cpan/LogImport/MANIFEST | 10
src/cpan/LogImport/Makefile.PL | 19 +
src/cpan/LogImport/typemap | 24 +
src/include/GNUmakefile | 6
src/include/import.h | 67 ++++
src/include/pmimport.h | 5
src/libpcp_import/GNUmakefile | 38 ++
src/libpcp_import/src/.gitignore | 4
src/libpcp_import/src/GNUmakefile | 79 ++++
src/libpcp_import/src/archive.c | 111 ++++++
src/libpcp_import/src/import.c | 607 +++++++++++++++++++++++++++++++++++++-
src/libpcp_import/src/private.h | 44 ++
src/libpcp_import/src/stuff.c | 146 +++++++++
src/pmns/stdpmid.pcp | 2
23 files changed, 1460 insertions(+), 57 deletions(-)
commit 5c22a1c543da08cd36e1da93a048015b212a3363
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Tue Jul 13 22:16:12 2010 +1000
libpcp_import - build tweaks
Getting closer to integration into the build ... still packaging work
to be done.
commit eeeed4a088dcc4d9127d91770e58f1d420401d5b
Author: Ken McDonell <kenj@xxxxxxxxxxxxxxxx>
Date: Tue Jul 13 16:33:29 2010 +1000
libpcp_import - initial checkin
Adds libpcp_import (source and headers, no man pages yet) and
PCP::LogImport Perl module as wrapper (also no documentation yet).
Still has a Perl stack curruption problem that is causing bad
free() from perl_destruct() (see QA 369).
|