Skip to content
Snippets Groups Projects
Commit 89220a5f authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Rename the proctrack/sid plugin proctrack/pgid

parent 6763021b
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ AC_CONFIG_FILES([Makefile
src/plugins/jobcomp/script/Makefile
src/plugins/proctrack/Makefile
src/plugins/proctrack/aix/Makefile
src/plugins/proctrack/sid/Makefile
src/plugins/proctrack/pgid/Makefile
src/plugins/proctrack/linuxproc/Makefile
src/plugins/sched/Makefile
src/plugins/sched/backfill/Makefile
......
......@@ -53,7 +53,7 @@
# define DEFAULT_PROCTRACK_TYPE "proctrack/aix"
#else
# define DEFAULT_CHECKPOINT_TYPE "checkpoint/none"
# define DEFAULT_PROCTRACK_TYPE "proctrack/sid"
# define DEFAULT_PROCTRACK_TYPE "proctrack/pgid"
#endif
#define DEFAULT_RETURN_TO_SERVICE 0
#define DEFAULT_SAVE_STATE_LOC "/tmp"
......
......@@ -2,7 +2,7 @@
# Makefile for proctrack plugins
if HAVE_AIX_PROCTRACK
SUBDIRS = aix sid linuxproc
SUBDIRS = aix pgid linuxproc
else
SUBDIRS = sid linuxproc
SUBDIRS = pgid linuxproc
endif
# $Id$
# Makefile for proctrack/sid plugin
# Makefile for proctrack/pgid plugin
AUTOMAKE_OPTIONS = foreign
......@@ -7,8 +7,8 @@ PLUGIN_FLAGS = -module -avoid-version --export-dynamic
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
pkglib_LTLIBRARIES = proctrack_sid.la
pkglib_LTLIBRARIES = proctrack_pgid.la
# Process group ID process tracking plugin.
proctrack_sid_la_SOURCES = proctrack_sid.c
proctrack_sid_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
proctrack_pgid_la_SOURCES = proctrack_pgid.c
proctrack_pgid_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
/*****************************************************************************\
* proctrack_sid.c - process tracking via process group ID plugin.
* proctrack_pgid.c - process tracking via process group ID plugin.
*****************************************************************************
* Copyright (C) 2005 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
......@@ -74,7 +74,7 @@
* matures.
*/
const char plugin_name[] = "Process tracking via process group ID plugin";
const char plugin_type[] = "proctrack/sid";
const char plugin_type[] = "proctrack/pgid";
const uint32_t plugin_version = 90;
/*
......
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