diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-11-13 12:15:09 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-11-13 12:15:09 +0000 |
commit | 407f34901361f6d68bca96543042b01581257485 (patch) | |
tree | 83d36055b08eb3f538534ed115b1f42e38279d57 | |
parent | 825d855b225c7c76371c72eae4d505a32c374007 (diff) | |
download | libguestfs-407f34901361f6d68bca96543042b01581257485.tar.gz libguestfs-407f34901361f6d68bca96543042b01581257485.tar.xz libguestfs-407f34901361f6d68bca96543042b01581257485.zip |
Docs: Remove incorrect statement from man page.
The low-level event-based API never existed so this statement
in the man page is wrong. If you want an asynchronous API, use
threads.
-rw-r--r-- | guestfs.pod | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guestfs.pod b/guestfs.pod index fdac80a6..9424ec2b 100644 --- a/guestfs.pod +++ b/guestfs.pod @@ -72,8 +72,7 @@ functions in the following order: guestfs_close (handle); C<guestfs_launch> and all of the actions including C<guestfs_sync> -are blocking calls. You can use the low-level event API to do -non-blocking operations instead. +are blocking calls. All functions that return integers, return C<-1> on error. See section L</ERROR HANDLING> below for how to handle errors. |