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

Add missing file.

parent 94bc3a8a
No related branches found
No related tags found
No related merge requests found
/*****************************************************************************\
* 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__*/
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