Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
b9de55cf
Commit
b9de55cf
authored
20 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Add missing file.
parent
94bc3a8a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmd/proctrack.h
+100
-0
100 additions, 0 deletions
src/slurmd/proctrack.h
with
100 additions
and
0 deletions
src/slurmd/proctrack.h
0 → 100644
+
100
−
0
View file @
b9de55cf
/*****************************************************************************\
* proctrack.h - Define process tracking plugin functions.
*****************************************************************************
* Copyright (C) 2005 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Morris Jette <jette1@llnl.gov>
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#ifndef __PROC_TRACK_H__
#define __PROC_TRACK_H__
#include
<slurm/slurm.h>
/*
* Initialize the process tracking plugin.
*
* Returns a SLURM errno.
*/
extern
int
slurm_proctrack_init
(
void
);
/*
* Terminate the process tracking plugin, free memory.
*
* Returns a SLURM errno.
*/
extern
int
slurm_proctrack_fini
(
void
);
/*
**************************************************************************
* P L U G I N C A L L S *
**************************************************************************
*/
/*
* Create a container
* job_id IN - SLURM job ID
*
* Returns container ID or zero on error
*/
extern
uint32_t
slurm_create_container
(
uint32_t
job_id
);
/*
* Add this process to the specified container
* cont_id IN - container ID as returned by slurm_create_container()
*
* Returns a SLURM errno.
*/
extern
int
slurm_add_container
(
uint32_t
cont_id
);
/*
* Signal all processes within a container
* cont_id IN - container ID as returned by slurm_create_container()
* signal IN - signal to send, if zero then perform error checking
* but do not send signal
*
* Returns a SLURM errno.
*/
extern
int
slurm_signal_container
(
uint32_t
cont_id
,
int
signal
);
/*
* Destroy a container, any processes within the container are not effected
* cont_id IN - container ID as returned by slurm_create_container()
*
* Returns a SLURM errno.
*/
extern
int
slurm_destroy_container
(
uint32_t
cont_id
);
/*
* Get container ID for give process ID
*
* Returns a SLURM errno.
*/
extern
uint32_t
slurm_find_container
(
pid_t
pid
);
/* Wait for all processes within a container to exit */
/* Add process to a container */
/* Get process IDs within a container */
/* Get container ID for give process ID */
/* Collect accounting information for all processes within a container */
#endif
/*__PROC_TRACK_H__*/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment