2012-04-02 17:24:29 +00:00
|
|
|
provider libvirt {
|
|
|
|
# file: src/qemu/qemu_monitor.c
|
|
|
|
# prefix: qemu
|
|
|
|
# binary: libvirtd
|
2012-08-10 21:14:21 +00:00
|
|
|
# module: libvirt/connection-driver/libvirt_driver_qemu.so
|
2012-04-02 17:24:29 +00:00
|
|
|
# Monitor lifecycle
|
|
|
|
probe qemu_monitor_new(void *mon, int refs, int fd);
|
|
|
|
probe qemu_monitor_ref(void *mon, int refs);
|
|
|
|
probe qemu_monitor_unref(void *mon, int refs);
|
|
|
|
probe qemu_monitor_close(void *monm, int refs);
|
|
|
|
|
|
|
|
# High level monitor message processing
|
|
|
|
probe qemu_monitor_send_msg(void *mon, const char *msg, int fd);
|
|
|
|
probe qemu_monitor_recv_reply(void *mon, const char *reply);
|
|
|
|
probe qemu_monitor_recv_event(void *mon, const char *event);
|
|
|
|
|
|
|
|
# Low level monitor I/O processing
|
|
|
|
probe qemu_monitor_io_process(void *mon, const char *buf, unsigned int len);
|
|
|
|
probe qemu_monitor_io_read(void *mon, const char *buf, unsigned int len, int ret, int errno);
|
|
|
|
probe qemu_monitor_io_write(void *mon, const char *buf, unsigned int len, int ret, int errno);
|
|
|
|
probe qemu_monitor_io_send_fd(void *mon, int fd, int ret, int errno);
|
|
|
|
};
|