Skip to content
Snippets Groups Projects
Commit 420a4ce9 authored by Moe Jette's avatar Moe Jette
Browse files

Correct typo "Indicies" to "Indices". Bryan O'Sullivan <bos@pathscale.com>

parent 9201ca93
No related branches found
No related tags found
No related merge requests found
.TH SCONTROL "1" "March 2005" "scontrol 0.5" "Slurm components" .TH SCONTROL "1" "April 2005" "scontrol 0.5" "Slurm components"
.SH "NAME" .SH "NAME"
scontrol \- Used view and modify Slurm configuration and state. scontrol \- Used view and modify Slurm configuration and state.
...@@ -335,7 +335,7 @@ PartitionName=class TotalNodes=10 TotalCPUs=20 RootOnly=NO ...@@ -335,7 +335,7 @@ PartitionName=class TotalNodes=10 TotalCPUs=20 RootOnly=NO
.br .br
MinNodes=1 MaxNodes=2 AllowGroups=students MinNodes=1 MaxNodes=2 AllowGroups=students
.br .br
Nodes=lx[0031-0040] NodeIndicies=31,40,-1 Nodes=lx[0031-0040] NodeIndices=31,40,-1
.br .br
scontrol: update PartitionName=class MaxTime=99 MaxNodes=4 scontrol: update PartitionName=class MaxTime=99 MaxNodes=4
.br .br
......
...@@ -144,7 +144,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner ) ...@@ -144,7 +144,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 6 ******/ /****** Line 6 ******/
fprintf ( out, "NodeList=%s ", job_ptr->nodes); fprintf ( out, "NodeList=%s ", job_ptr->nodes);
fprintf ( out, "NodeListIndicies="); fprintf ( out, "NodeListIndices=");
for (j = 0; job_ptr->node_inx; j++) { for (j = 0; job_ptr->node_inx; j++) {
if (j > 0) if (j > 0)
fprintf( out, ",%d", job_ptr->node_inx[j]); fprintf( out, ",%d", job_ptr->node_inx[j]);
...@@ -190,7 +190,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner ) ...@@ -190,7 +190,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 10 ******/ /****** Line 10 ******/
fprintf ( out, "ReqNodeList=%s ", job_ptr->req_nodes); fprintf ( out, "ReqNodeList=%s ", job_ptr->req_nodes);
fprintf ( out, "ReqNodeListIndicies="); fprintf ( out, "ReqNodeListIndices=");
for (j = 0; job_ptr->req_node_inx; j++) { for (j = 0; job_ptr->req_node_inx; j++) {
if (j > 0) if (j > 0)
fprintf( out, ",%d", job_ptr->req_node_inx[j]); fprintf( out, ",%d", job_ptr->req_node_inx[j]);
...@@ -206,7 +206,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner ) ...@@ -206,7 +206,7 @@ slurm_print_job_info ( FILE* out, job_info_t * job_ptr, int one_liner )
/****** Line 11 ******/ /****** Line 11 ******/
fprintf ( out, "ExcNodeList=%s ", job_ptr->exc_nodes); fprintf ( out, "ExcNodeList=%s ", job_ptr->exc_nodes);
fprintf ( out, "ExcNodeListIndicies="); fprintf ( out, "ExcNodeListIndices=");
for (j = 0; job_ptr->exc_node_inx; j++) { for (j = 0; job_ptr->exc_node_inx; j++) {
if (j > 0) if (j > 0)
fprintf( out, ",%d", job_ptr->exc_node_inx[j]); fprintf( out, ",%d", job_ptr->exc_node_inx[j]);
......
...@@ -132,7 +132,7 @@ void slurm_print_partition_info ( FILE* out, partition_info_t * part_ptr, ...@@ -132,7 +132,7 @@ void slurm_print_partition_info ( FILE* out, partition_info_t * part_ptr,
fprintf ( out, "\n "); fprintf ( out, "\n ");
/****** Line 4 ******/ /****** Line 4 ******/
fprintf ( out, "Nodes=%s NodeIndicies=", part_ptr->nodes); fprintf ( out, "Nodes=%s NodeIndices=", part_ptr->nodes);
for (j = 0; part_ptr->node_inx; j++) { for (j = 0; part_ptr->node_inx; j++) {
if (j > 0) if (j > 0)
fprintf( out, ",%d", part_ptr->node_inx[j]); fprintf( out, ",%d", part_ptr->node_inx[j]);
......
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