Files
guestfs-inspect/guestfs-inspectd.c

28 lines
630 B
C

#include <stdio.h>
#include <stdlib.h>
#include <czmq.h>
#include <zactor.h>
#include <guestfs.h>
void *worker_task;
int main(int argc, char **argv) {
if (argc < 2) {
printf("Usage: %s <disk-path> ...\n", argv[0]);
return EXIT_FAILURE;
}
const int worker_count = argc - 1;
// One worker per disk image.
zactor_t *workers[worker_count];
for (int i = 0; i < worker_count; i++) {
char *path = strtok(argv[i+1], ":");
char *name = strtok(NULL, ":");
workers[i] = zactor_new(worker_task, (void *) &((struct { char* path; char *name; }) {.path = path, .name = name}));
}
return EXIT_SUCCESS;
}