Skip to content
Snippets Groups Projects
Commit 85b77b32 authored by Morris Jette's avatar Morris Jette
Browse files

job_submit/throttle - Free memory at shutdown

parent 4713523c
No related branches found
No related tags found
No related merge requests found
......@@ -159,6 +159,17 @@ static void _reset_counters(void)
}
}
extern int init(void)
{
return SLURM_SUCCESS;
}
extern int fini(void)
{
xfree(thru_put_array);
return SLURM_SUCCESS;
}
extern int job_submit(struct job_descriptor *job_desc, uint32_t submit_uid,
char **err_msg)
{
......
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