Skip to content
Snippets Groups Projects
Commit f80ce096 authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Changed fed_job_details to job_fed_details

And make it a pointer on the job_record struct.
parent 7ae7151e
No related branches found
No related tags found
No related merge requests found
......@@ -557,7 +557,7 @@ typedef struct {
typedef struct {
bitstr_t *siblings; /* bitmap of sibling cluster ids where
* sibling jobs exist */
} fed_job_details_t;
} job_fed_details_t;
/*
* NOTE: When adding fields to the job_record, or any underlying structures,
......@@ -621,7 +621,7 @@ struct job_record {
bool epilog_running; /* true of EpilogSlurmctld is running */
uint32_t exit_code; /* exit code for job (status from
* wait call) */
fed_job_details_t fed_details; /* details for federated jobs. */
job_fed_details_t *fed_details; /* details for federated jobs. */
front_end_record_t *front_end_ptr; /* Pointer to front-end node running
* this job */
char *gres; /* generic resources requested by job */
......
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