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

ALPS - Fix depth for Memory items in BASIL with CLE 5.2.

parent 8b639aaa
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ documents those changes that are of interest to users and admins.
* Changes in Slurm 14.03.11
===========================
-- ALPS - Fix depth for Memory items in BASIL with CLE 5.2.
* Changes in Slurm 14.03.10
===========================
......
......@@ -135,19 +135,19 @@ const struct element_handler basil_5_2_elements[] = {
},
[BT_MEMARRAY] = {
.tag = "MemoryArray",
.depth = 5,
.depth = 9,
.uniq = true,
.hnd = NULL
},
[BT_MEMORY] = {
.tag = "Memory",
.depth = 6,
.depth = 10,
.uniq = false,
.hnd = eh_mem
},
[BT_MEMALLOC] = {
.tag = "MemoryAllocation",
.depth = 7,
.depth = 8,
.uniq = false,
.hnd = eh_mem_alloc
},
......
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