/var/lib/pcp/testsuite/src/int2indom.c is in pcp-testsuite 4.0.1-1.
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 | /*
* Copyright (c) 2017 Red Hat.
*
* Convert raw integers into dotted-form InDoms.
*/
#include <pcp/pmapi.h>
int
main(int argc, char *argv[])
{
pmInDom indom;
while (optind < argc) {
indom = atoi(argv[optind++]);
printf("%u = %s\n", indom, pmInDomStr(indom));
}
return 0;
}
|