17 lines
300 B
C
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;
|
|
}
|