Update task dependency with nber link
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
205 238 206 239 /* construct line */ 207 if (ta->subtype == task_subtype_none) 208 sprintf(ta_name, "%s", taskID_names[ta->type]); 209 else 210 sprintf(ta_name, "\"%s %s\"", taskID_names[ta->type], 211 subtaskID_names[ta->subtype]); 212 213 if (tb->subtype == task_subtype_none) 214 sprintf(tb_name, "%s", taskID_names[tb->type]); 215 else 216 sprintf(tb_name, "\"%s %s\"", taskID_names[tb->type], 217 subtaskID_names[tb->subtype]); 218 219 /* Write to the ffile */ 220 fprintf(f, "\t %s->%s;\n", ta_name, tb_name); mentioned in commit 1f0fda81
Please register or sign in to reply