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

Priority multifactor - add missing variable definitions just to be safe.

parent 4b862252
No related branches found
No related tags found
No related merge requests found
...@@ -75,11 +75,13 @@ void *acct_db_conn __attribute__((weak_import)) = NULL; ...@@ -75,11 +75,13 @@ void *acct_db_conn __attribute__((weak_import)) = NULL;
uint32_t cluster_cpus __attribute__((weak_import)) = NO_VAL; uint32_t cluster_cpus __attribute__((weak_import)) = NO_VAL;
List job_list __attribute__((weak_import)) = NULL; List job_list __attribute__((weak_import)) = NULL;
time_t last_job_update __attribute__((weak_import)); time_t last_job_update __attribute__((weak_import));
slurm_ctl_conf_t slurmctld_conf __attribute__((weak_import));
#else #else
void *acct_db_conn = NULL; void *acct_db_conn = NULL;
uint32_t cluster_cpus = NO_VAL; uint32_t cluster_cpus = NO_VAL;
List job_list = NULL; List job_list = NULL;
time_t last_job_update; time_t last_job_update;
slurm_ctl_conf_t slurmctld_conf;
#endif #endif
/* /*
......
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