Revision 587ed6be qemu-config.c

b/qemu-config.c
653 653
    },
654 654
};
655 655

  
656
static QemuOptsList qemu_add_fd_opts = {
657
    .name = "add-fd",
658
    .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
659
    .desc = {
660
        {
661
            .name = "fd",
662
            .type = QEMU_OPT_NUMBER,
663
            .help = "file descriptor of which a duplicate is added to fd set",
664
        },{
665
            .name = "set",
666
            .type = QEMU_OPT_NUMBER,
667
            .help = "ID of the fd set to add fd to",
668
        },{
669
            .name = "opaque",
670
            .type = QEMU_OPT_STRING,
671
            .help = "free-form string used to describe fd",
672
        },
673
        { /* end of list */ }
674
    },
675
};
676

  
656 677
static QemuOptsList *vm_config_groups[32] = {
657 678
    &qemu_drive_opts,
658 679
    &qemu_chardev_opts,
......
669 690
    &qemu_boot_opts,
670 691
    &qemu_iscsi_opts,
671 692
    &qemu_sandbox_opts,
693
    &qemu_add_fd_opts,
672 694
    NULL,
673 695
};
674 696

  

Also available in: Unified diff