From: Miloš Mulač Date: Fri, 3 Jun 2005 14:48:19 +0000 (+0000) Subject: support for possible destinations and ce_nodes X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=632947461158e8064761c2ef0b7780d5cfb553f5;p=jra1mw.git support for possible destinations and ce_nodes - slightly tested (seems to work at first glance) --- diff --git a/org.glite.lb.client/examples/job_status.c b/org.glite.lb.client/examples/job_status.c index 489d194..e894065 100644 --- a/org.glite.lb.client/examples/job_status.c +++ b/org.glite.lb.client/examples/job_status.c @@ -240,6 +240,18 @@ static void printstat(edg_wll_JobStat stat, int level) printf("%sexpectUpdate : %d\n", ind, stat.expectUpdate); printf("%sexpectFrom : %s\n", ind, stat.expectFrom); printf("%sacl : %s\n", ind, stat.acl); + printf("%spayload_running: %d\n", ind, stat.payload_running); + if (stat.possible_destinations) { + printf("%spossible_destinations : \n", ind); + for (i=0; stat.possible_destinations[i]; i++) + printf("%s\t%s \n", ind, stat.possible_destinations[i]); + } + if (stat.possible_ce_nodes) { + printf("%spossible_ce_nodes : \n", ind); + for (i=0; stat.possible_ce_nodes[i]; i++) + printf("%s\t%s \n", ind, stat.possible_ce_nodes[i]); + } + printf("\n"); free(j);