/usr/include/gfarm/host_info.h is in libgfarm-dev 2.6.15+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /*
* GFarm host table:
* (hostname) -> (architecture, ncpu)
*/
struct gfarm_host_info {
char *hostname;
int port;
int nhostaliases;
char **hostaliases;
char *architecture;
int ncpu;
int flags;
};
#define GFARM_HOST_INFO_NCPU_NOT_SET (-1)
#define GFARM_HOST_INFO_FLAGS_HAS_DISK 0x00000001
void gfarm_host_info_free(struct gfarm_host_info *);
void gfarm_host_info_free_all(int, struct gfarm_host_info *);
|