Files
guestfs-inspect/guestfs-inspectd.c
2024-03-02 21:47:08 -05:00

17 lines
300 B
C

#include <stdio.h>
#include <stdlib.h>
#include <czmq.h>
#include <guestfs.h>
int main(int argc, char **argv) {
if (argc < 2) {
printf("Usage: %s <disk-path> ...\n", argv[0]);
return EXIT_FAILURE;
}
// One worker per disk image.
zactor_t *workers[argc-1];
return EXIT_SUCCESS;
}