summaryrefslogtreecommitdiffstats
path: root/perl/Guestfs.xs
diff options
context:
space:
mode:
Diffstat (limited to 'perl/Guestfs.xs')
-rw-r--r--perl/Guestfs.xs10
1 files changed, 10 insertions, 0 deletions
diff --git a/perl/Guestfs.xs b/perl/Guestfs.xs
index ce697c54..27e03d06 100644
--- a/perl/Guestfs.xs
+++ b/perl/Guestfs.xs
@@ -352,6 +352,16 @@ PREINIT:
croak ("set_ready: %s", guestfs_last_error (g));
void
+end_busy (g)
+ guestfs_h *g;
+PREINIT:
+ int r;
+ PPCODE:
+ r = guestfs_end_busy (g);
+ if (r == -1)
+ croak ("end_busy: %s", guestfs_last_error (g));
+
+void
mount (g, device, mountpoint)
guestfs_h *g;
char *device;