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

Export s_p_hashtbl_destroy as slurm_s_p_hashtbl_destroy

Export the symbol s_p_hashtbl_destroy as slurm_s_p_hashtbl_destroy
in libslurm so that external programs can link to libslurm and be
able to reference select/cray without undefined symbols
parent 0c047dc1
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,7 @@
strong_alias(s_p_get_string, slurm_s_p_get_string);
strong_alias(s_p_get_uint32, slurm_s_p_get_uint32);
strong_alias(s_p_hashtbl_create, slurm_s_p_hashtbl_create);
strong_alias(s_p_hashtbl_destroy, slurm_s_p_hashtbl_destroy);
strong_alias(s_p_parse_file, slurm_s_p_parse_file);
#define BUFFER_SIZE 4096
......
......@@ -354,6 +354,7 @@
#define s_p_get_string slurm_s_p_get_string
#define s_p_get_uint32 slurm_s_p_get_uint32
#define s_p_hashtbl_create slurm_s_p_hashtbl_create
#define s_p_hashtbl_destroy slurm_s_p_hashtbl_destroy
#define s_p_parse_file slurm_s_p_parse_file
#endif /* USE_ALIAS */
......
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