From 011dd48c00fd637c8089fa1a6bb79c63472a626b Mon Sep 17 00:00:00 2001 From: Saverio Proto Date: Fri, 5 Sep 2014 18:58:29 +0200 Subject: [PATCH] manynodes: put a prefix di graph json files because with LXC many machines write into the same folder --- examples/manynodes.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/manynodes.c b/examples/manynodes.c index 9e693ebf..3f59ec38 100644 --- a/examples/manynodes.c +++ b/examples/manynodes.c @@ -18,7 +18,7 @@ static int n = 10; static meshlink_handle_t **mesh; - +static char* namesprefix="machine1"; static int nodeindex = 0; static meshlink_node_t **nodes; @@ -113,7 +113,7 @@ void exportmeshgraph_timer(int signum) gettimeofday(&ts, NULL); char name[1024]; - snprintf(name, sizeof(name), "graph_%ld_%03ld.json", ts.tv_sec, ts.tv_usec/1000); + snprintf(name, sizeof(name), "%sgraph_%ld_%03ld.json", namesprefix,ts.tv_sec, ts.tv_usec/1000); exportmeshgraph(name); } @@ -342,7 +342,6 @@ static void parse_input(char *buf) { int main(int argc, char *argv[]) { const char *basebase = ".manynodes"; - const char *namesprefix = "machine1"; const char *graphexporttimeout = NULL; char buf[1024]; -- 2.39.5