aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2010-10-13 12:19:02 +0200
committerDaniel Veillard <veillard@redhat.com>2010-10-13 13:50:07 +0200
commit0df671513d4b303d3cf19f126b3581b10a9c4166 (patch)
tree7a763cd5c2194101b88dbbf4cc382fef3a142e21 /docs/apibuild.py
parentImplement support for virtio plan9fs filesystem passthrough in QEMU (diff)
downloadlibvirt-0df671513d4b303d3cf19f126b3581b10a9c4166.tar.gz
libvirt-0df671513d4b303d3cf19f126b3581b10a9c4166.tar.bz2
libvirt-0df671513d4b303d3cf19f126b3581b10a9c4166.zip
Fixes for documentation extraction
* include/libvirt/libvirt.h.in: some of the function type description were broken so they could not be automatically documented * src/util/event.c docs/apibuild.py: event.c exports one public API so it needs to be scanned too, avoid a few warnings
Diffstat (limited to 'docs/apibuild.py')
-rwxr-xr-xdocs/apibuild.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/apibuild.py b/docs/apibuild.py
index 2dda4df1b..62b75575b 100755
--- a/docs/apibuild.py
+++ b/docs/apibuild.py
@@ -22,6 +22,7 @@ included_files = {
"virterror.h": "header with error specific API definitions",
"libvirt.c": "Main interfaces for the libvirt library",
"virterror.c": "implements error handling and reporting code for libvirt",
+ "event.c": "event loop for monitoring file handles",
}
ignored_words = {
@@ -43,6 +44,12 @@ ignored_functions = {
"virDomainMigratePrepareTunnel": "private function for tunnelled migration",
"virDrvSupportsFeature": "private function for remote access",
"DllMain": "specific function for Win32",
+ "virEventAddHandle": "internal function in event.c",
+ "virEventUpdateHandle": "internal function in event.c",
+ "virEventRemoveHandle": "internal function in event.c",
+ "virEventAddTimeout": "internal function in event.c",
+ "virEventUpdateTimeout": "internal function in event.c",
+ "virEventRemoveTimeout": "internal function in event.c",
}
def escape(raw):