diff options
author | Daniel Veillard <veillard@redhat.com> | 2010-10-13 12:19:02 +0200 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2010-10-13 13:50:07 +0200 |
commit | 0df671513d4b303d3cf19f126b3581b10a9c4166 (patch) | |
tree | 7a763cd5c2194101b88dbbf4cc382fef3a142e21 /docs/apibuild.py | |
parent | Implement support for virtio plan9fs filesystem passthrough in QEMU (diff) | |
download | libvirt-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-x | docs/apibuild.py | 7 |
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): |