Skip to content
Snippets Groups Projects
Commit 06b8b786 authored by Danny Auble's avatar Danny Auble
Browse files

added more debug

parent 072686a4
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ extern int common_add_task(pid_t pid, uint16_t tid)
}
jobacct->pid = pid;
debug("adding task %u pid %d to jobacct", tid, pid);
debug2("adding task %u pid %d to jobacct", tid, pid);
list_push(task_list, jobacct);
slurm_mutex_unlock(&jobacct_lock);
......@@ -111,6 +111,8 @@ extern struct jobacctinfo *common_remove_task(pid_t pid)
}
list_iterator_destroy(itr);
if(jobacct) {
debug2("removing task %u pid %d to jobacct",
jobacct->max_vsize_task, jobacct->pid);
ret_jobacct = xmalloc(sizeof(struct jobacctinfo));
memcpy(ret_jobacct, jobacct, sizeof(struct jobacctinfo));
common_free_jobacct(jobacct);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment