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

Define new RPC to get information about an existing job allocation,

slurm_confirm_allocation.
parent 654f4dd5
No related branches found
No related tags found
No related merge requests found
.TH "Slurm API" "3" "September 2002" "Morris Jette" "Slurm error calls"
.TH "Slurm API" "3" "October 2002" "Morris Jette" "Slurm error calls"
.SH "NAME"
.LP
\fBslurm_job\fR \- Slurm error calls
......@@ -84,6 +84,7 @@ details.
\fBslurm_allocate_resources\fR(3),
\fBslurm_cancel_job\fR(3), \fBslurm_cancel_job_step\fR(3),
\fBslurm_complete_job\fR(3), \fBslurm_complete_job_step\fR(3),
\fBslurm_confirm_allocation\fR(3),
\fBslurm_free_ctl_conf\fR(3),
\fBslurm_free_resource_allocation_response_msg\fR(3), \fBslurm_free_job_info\fR(3),
\fBslurm_free_job_step_create_response_msg\fR(3),
......
.TH "Slurm API" "3" "July 2002" "Morris Jette" "Slurm informational calls"
.TH "Slurm API" "3" "October 2002" "Morris Jette" "Slurm informational calls"
.SH "NAME"
.LP
\fBslurm_info\fR \- Slurm informational calls
......@@ -277,5 +277,6 @@ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
.SH "SEE ALSO"
.LP
\fBscontrol\fR(1), \fBsqueue\fR(1), \fBslurm_get_errno\fR(3), \fBslurm_perror\fR(3), \fBslurm_strerror\fR(3)
\fBscontrol\fR(1), \fBsqueue\fR(1), \fBslurm_confirm_allocation\fR(3),
\fBslurm_get_errno\fR(3), \fBslurm_perror\fR(3), \fBslurm_strerror\fR(3)
.TH "Slurm API" "3" "September 2002" "Morris Jette" "Slurm job management calls"
.TH "Slurm API" "3" "October 2002" "Morris Jette" "Slurm job management calls"
.SH "NAME"
.LP
\fBslurm_job\fR \- Slurm job management calls
......@@ -15,6 +15,14 @@ int \fBslurm_allocate_resources\fR (
int \fIimmediate\fP
.br
);
.LP
int \fBslurm_confirm_allocation\fR (
.br
old_job_alloc_msg_t *\fIold_job_desc_msg_ptr\fP,
.br
resource_allocation_response_msg_t **\fIslurm_alloc_msg_pptr\fP
.br
);
.LP
int \fBslurm_cancel_job\fR (
.br
......@@ -112,6 +120,10 @@ on the data structure's contents.
\fIjob_id\fP
Slurm job id number.
.TP
\fIold_job_desc_msg_ptr\fP
Specifies the pointer to a description of an existing job. See slurm.h for full details
on the data structure's contents.
.TP
\fIslurm_alloc_msg_pptr\fP
Specifies the double pointer to the structure to be created and filled with a
description of the created resource allocation (job): job ID, list of allocated nodes,
......@@ -162,6 +174,10 @@ executed by the job's owner or user root.
.LP
\fBslurm_complete_job_step\fR Note the termination of a job step. This function may only
be successfully executed by the job's owner or user root.
.LP
\fBslurm_confirm_allocation\fR Return detailed information on a specific existing job
allocation. This function may only be successfully executed by the job's owner or user
root.
.LP
\fBslurm_free_job_step_create_response_msg\fR Release the storage generated in response
to a call of the function \fBslurm_job_step_create\fR.
......
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