[PVFS2-CVS] commit by pw in pvfs2/src/io/job: job-time-mgr.c
CVS commit program
cvs at parl.clemson.edu
Thu Apr 21 17:13:59 EDT 2005
Update of /projects/cvsroot/pvfs2/src/io/job
In directory parlweb:/tmp/cvs-serv8054/src/io/job
Modified Files:
job-time-mgr.c
Log Message:
show true function name
Index: job-time-mgr.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/io/job/job-time-mgr.c,v
diff -u -p -u -r1.14 -r1.15
--- job-time-mgr.c 3 Dec 2004 19:16:10 -0000 1.14
+++ job-time-mgr.c 21 Apr 2005 20:13:59 -0000 1.15
@@ -253,7 +253,8 @@ int job_time_mgr_expire(void)
switch(jd->type)
{
case JOB_BMI:
- gossip_debug(GOSSIP_CANCEL_DEBUG, "job_timer: cancelling bmi.\n");
+ gossip_debug(GOSSIP_CANCEL_DEBUG, "%s: cancelling bmi.\n",
+ __func__);
ret = job_bmi_cancel(jd->job_id, jd->context_id);
break;
case JOB_FLOW:
@@ -271,13 +272,13 @@ int job_time_mgr_expire(void)
{
/* otherwise kill the flow */
gossip_debug(GOSSIP_CANCEL_DEBUG,
- "job_timer: cancelling flow.\n");
+ "%s: cancelling flow.\n", __func__);
ret = job_flow_cancel(jd->job_id, jd->context_id);
}
break;
case JOB_TROVE:
gossip_debug(GOSSIP_CANCEL_DEBUG,
- "job_timer: cancelling trove.\n");
+ "%s: cancelling trove.\n", __func__);
ret = job_trove_dspace_cancel(
jd->u.trove.fsid, jd->job_id, jd->context_id);
break;
More information about the PVFS2-CVS
mailing list