Skip to content

Commit

Permalink
modules/live: Remove live module & module tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chu11 committed Mar 14, 2017
1 parent 84cc37b commit 1ee30bc
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 1,380 deletions.
1 change: 0 additions & 1 deletion configure.ac
Expand Up @@ -273,7 +273,6 @@ AC_CONFIG_FILES( \
src/modules/content-sqlite/Makefile \
src/modules/libkz/Makefile \
src/modules/libjsc/Makefile \
src/modules/live/Makefile \
src/modules/barrier/Makefile \
src/modules/wreck/Makefile \
src/modules/resource-hwloc/Makefile \
Expand Down
2 changes: 1 addition & 1 deletion etc/flux-core.pc.in
Expand Up @@ -6,5 +6,5 @@ includedir=@includedir@
Name: flux-core
Description: Flux Resource Manager Framework Core
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lflux-jsc -lflux-live -lflux-kvs -lflux-barrier -lflux-core -lflux-optparse
Libs: -L${libdir} -lflux-jsc -lflux-kvs -lflux-barrier -lflux-core -lflux-optparse
Cflags: -I${includedir}
1 change: 0 additions & 1 deletion src/cmd/Makefile.am
Expand Up @@ -14,7 +14,6 @@ fluxcmd_ldadd = \
$(top_builddir)/src/common/libflux-core.la \
$(top_builddir)/src/common/libflux-optparse.la \
$(top_builddir)/src/modules/kvs/libflux-kvs.la \
$(top_builddir)/src/modules/live/libflux-live.la \
$(ZMQ_LIBS) $(LIBMUNGE) $(LIBPTHREAD) $(LIBDL)

LDADD = $(fluxcmd_ldadd)
Expand Down
18 changes: 0 additions & 18 deletions src/cmd/flux-comms.c
Expand Up @@ -50,9 +50,6 @@ void usage (void)
" flux-comms info\n"
" flux-comms [-r N] reparent new-uri\n"
" flux-comms [-r N] panic [msg ...]\n"
" flux-comms [-r N] failover\n"
" flux-comms [-r N] recover\n"
" flux-comms recover-all\n"
);
exit (1);
}
Expand Down Expand Up @@ -114,21 +111,6 @@ int main (int argc, char *argv[])
flux_panic (h, rank, msg);
if (msg)
free (msg);
} else if (!strcmp (cmd, "failover")) {
if (optind != argc)
usage ();
if (flux_failover (h, rank) < 0)
log_err_exit ("flux_failover");
} else if (!strcmp (cmd, "recover")) {
if (optind != argc)
usage ();
if (flux_recover (h, rank) < 0)
log_err_exit ("flux_recover");
} else if (!strcmp (cmd, "recover-all")) {
if (optind != argc)
usage ();
if (flux_recover_all (h) < 0)
log_err_exit ("flux_recover_all");
} else if (!strcmp (cmd, "info")) {
int arity;
uint32_t rank, size;
Expand Down
1 change: 0 additions & 1 deletion src/common/core.h
Expand Up @@ -32,7 +32,6 @@
#include "core/flux.h"

#include "core/kvs.h"
#include "core/live.h"
#include "core/barrier.h"
#include "core/jstatctl.h"

Expand Down
1 change: 0 additions & 1 deletion src/include/flux/core.h
Expand Up @@ -7,7 +7,6 @@
#include "src/common/libflux/flux.h"

#include "src/modules/kvs/kvs.h"
#include "src/modules/live/live.h"
#include "src/modules/barrier/barrier.h"
#include "src/modules/libjsc/jstatctl.h"

Expand Down
1 change: 0 additions & 1 deletion src/modules/Makefile.am
Expand Up @@ -5,7 +5,6 @@ SUBDIRS = \
kvs \
content-sqlite \
libkz \
live \
wreck \
libjsc \
resource-hwloc \
Expand Down
40 changes: 0 additions & 40 deletions src/modules/live/Makefile.am

This file was deleted.

79 changes: 0 additions & 79 deletions src/modules/live/liblive.c

This file was deleted.

0 comments on commit 1ee30bc

Please sign in to comment.