From 650493a479417027b0041ddd953550452ff9914a Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Tue, 10 May 2011 12:51:43 +0200 Subject: Ticket #236 document abrt-action-list-dsos Signed-off-by: Nikola Pajkovsky --- src/plugins/Makefile.am | 5 ++-- src/plugins/abrt-action-list-dsos.txt | 44 +++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 src/plugins/abrt-action-list-dsos.txt (limited to 'src/plugins') diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index a1005bd9..ab2e637c 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -65,13 +65,14 @@ MAN_TXT = \ abrt-action-generate-backtrace.txt \ abrt-action-analyze-backtrace.txt \ abrt-action-mailx.txt \ - abrt-action-bugzilla.txt + abrt-action-bugzilla.txt \ + abrt-action-list-dsos.txt # Manual pages are generated from .txt via Docbook man1_MANS = ${MAN_TXT:%.txt=%.1} %.1 %.5 %.7: %.xml - $(XMLTO_SILENT) xmlto man $< > /dev/null 2>&1 + $(XMLTO_SILENT) xmlto man $< > /dev/null %.xml: %.txt ../../asciidoc.conf $(ASCIIDOC_SILENT) asciidoc --backend=docbook --doctype=manpage --conf-file ../../asciidoc.conf -aabrt_version=$(PACKAGE_VERSION) -o $@ $< diff --git a/src/plugins/abrt-action-list-dsos.txt b/src/plugins/abrt-action-list-dsos.txt new file mode 100644 index 00000000..18d10708 --- /dev/null +++ b/src/plugins/abrt-action-list-dsos.txt @@ -0,0 +1,44 @@ +abrt-action-list-dsos(1) +====================== + +NAME +---- +abrt-action-list-dsos - Prints out DSO from mapped memory regions. + +SYNOPSIS +-------- +'abrt-action-list-dsos' [-o OUTFILE] -m PROC_PID_MAP_FILE + +DESCRIPTION +----------- +The tool reads a file containing the mapped memory regions. +Output is printed to 'stdout' or 'file'. + +Output format: + +------------ +%p %n %v %i +------------ +where + +'%p':: + path to library or binary file, which is mapped in memory region +'%n':: + name, version, release, architecture of package, where '%p' belongs +'%v':: + vendor of package +'%i':: + installation time + +OPTIONS +------- +-o OUTFILE:: + Output file, if not specified, it is printed to 'stdout' + +-m PROC_PID_MAP_FILE:: + File containing the mapped memory regions + +AUTHORS +------- +* ABRT team + -- cgit