aboutsummaryrefslogtreecommitdiff
path: root/lib/irq.h
diff options
context:
space:
mode:
authorJohn Levon <john.levon@nutanix.com>2020-11-27 14:48:07 +0000
committerGitHub <noreply@github.com>2020-11-27 14:48:07 +0000
commite94bd44d10d8019ea2c39356363a5743136bdb5d (patch)
tree93f71114f5e57682a5a5a1182f7c1e19ce963ff8 /lib/irq.h
parent40ac852fec651f54a4be8905ab8bb6b25ddb64e2 (diff)
downloadlibvfio-user-e94bd44d10d8019ea2c39356363a5743136bdb5d.zip
libvfio-user-e94bd44d10d8019ea2c39356363a5743136bdb5d.tar.gz
libvfio-user-e94bd44d10d8019ea2c39356363a5743136bdb5d.tar.bz2
rename to libvfio-user (#128)
The muser name no longer reflects the implementation, and will just serve to confuse. Bite the bullet now, and rename ourselves to reflect the actual implementation. Signed-off-by: John Levon <john.levon@nutanix.com> Reviewed-by: Thanos Makatos <thanos.makatos@nutanix.com> Reviewed-by: Swapnil Ingle <swapnil.ingle@nutanix.com>
Diffstat (limited to 'lib/irq.h')
-rw-r--r--lib/irq.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/irq.h b/lib/irq.h
index d29e224..5f29e9e 100644
--- a/lib/irq.h
+++ b/lib/irq.h
@@ -30,19 +30,19 @@
*
*/
-#ifndef LIB_MUSER_IRQ_H
-#define LIB_MUSER_IRQ_H
+#ifndef LIB_VFIO_USER_IRQ_H
+#define LIB_VFIO_USER_IRQ_H
-#include "muser_priv.h"
+#include "private.h"
int
-handle_device_get_irq_info(lm_ctx_t *lm_ctx, uint32_t size,
+handle_device_get_irq_info(vfu_ctx_t *vfu_ctx, uint32_t size,
struct vfio_irq_info *irq_info_in,
struct vfio_irq_info *irq_info_out);
int
-handle_device_set_irqs(lm_ctx_t *lm_ctx, uint32_t size,
+handle_device_set_irqs(vfu_ctx_t *vfu_ctx, uint32_t size,
int *fds, int nr_fds, struct vfio_irq_set *irq_set);
-#endif /* LIB_MUSER_IRQ_H */
+#endif /* LIB_VFIO_USER_IRQ_H */
/* ex: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: */