Skip to content
Snippets Groups Projects
Commit cbf7b336 authored by Morris Jette's avatar Morris Jette
Browse files

Add SICP module stubs

Add module for inter-cluster job development work
parent 3a97fd10
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,8 @@ slurmctld_SOURCES = \
reservation.h \
sched_plugin.c \
sched_plugin.h \
sicp.c \
sicp.h \
slurmctld.h \
srun_comm.c \
srun_comm.h \
......
......@@ -147,7 +147,7 @@ am_slurmctld_OBJECTS = acct_policy.$(OBJEXT) agent.$(OBJEXT) \
slurmctld_plugstack.$(OBJEXT) port_mgr.$(OBJEXT) \
power_save.$(OBJEXT) preempt.$(OBJEXT) proc_req.$(OBJEXT) \
read_config.$(OBJEXT) reservation.$(OBJEXT) \
sched_plugin.$(OBJEXT) srun_comm.$(OBJEXT) \
sched_plugin.$(OBJEXT) sicp.$(OBJEXT) srun_comm.$(OBJEXT) \
state_save.$(OBJEXT) statistics.$(OBJEXT) step_mgr.$(OBJEXT) \
trigger_mgr.$(OBJEXT)
slurmctld_OBJECTS = $(am_slurmctld_OBJECTS)
......@@ -516,6 +516,8 @@ slurmctld_SOURCES = \
reservation.h \
sched_plugin.c \
sched_plugin.h \
sicp.c \
sicp.h \
slurmctld.h \
srun_comm.c \
srun_comm.h \
......@@ -650,6 +652,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/read_config.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reservation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sched_plugin.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sicp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slurmctld_plugstack.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/srun_comm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/state_save.Po@am__quote@
......
/*****************************************************************************\
* sicp.c - Inter-cluster job management functions
*****************************************************************************
* Copyright (C) SchedMD LLC (http://www.schedmd.com).
* Written by Morris Jette
*
* This file is part of SLURM, a resource management program.
* For details, see <http://slurm.schedmd.com/>.
* Please also read the included file: DISCLAIMER.
*
* 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.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include "src/common/xassert.h"
#include "src/common/xmalloc.h"
#include "src/common/xstring.h"
#include "src/slurmctld/sicp.h"
#include "src/slurmctld/slurmctld.h"
List sicp_job_list;
/*****************************************************************************\
* sicp.h - Inter-cluster job management functions
*****************************************************************************
* Copyright (C) SchedMD LLC (http://www.schedmd.com).
* Written by Morris Jette
*
* This file is part of SLURM, a resource management program.
* For details, see <http://slurm.schedmd.com/>.
* Please also read the included file: DISCLAIMER.
*
* 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.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#ifndef _HAVE_SICP_H
#define _HAVE_SICP_H
#include <sys/types.h>
#include <time.h>
#include "src/common/list.h"
#include "src/slurmctld/slurmctld.h"
typedef struct sicp_job {
uint32_t job_id; /* Global job ID */
uint16_t job_state; /* state of the job */
time_t update_time; /* Time job last seen */
} sicp_job_t;
extern List sicp_job_list;
#endif /* !_HAVE_SICP_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