Re-separate out the always-installable headers from the
LAM-development headers. This commit was SVN r925.
Этот коммит содержится в:
родитель
e18d26e901
Коммит
251f68b94f
@ -5,6 +5,6 @@
|
|||||||
|
|
||||||
include $(top_srcdir)/config/Makefile.options
|
include $(top_srcdir)/config/Makefile.options
|
||||||
|
|
||||||
SUBDIRS = config src
|
SUBDIRS = config include src
|
||||||
|
|
||||||
EXTRA_DIST = VERSION Doxyfile
|
EXTRA_DIST = VERSION Doxyfile
|
||||||
|
@ -335,7 +335,7 @@ EOF
|
|||||||
# We only need the libltdl stuff for the top-level
|
# We only need the libltdl stuff for the top-level
|
||||||
# configure, not any of the MCA modules.
|
# configure, not any of the MCA modules.
|
||||||
|
|
||||||
if test -f src/include/mpi.h; then
|
if test -f include/mpi.h; then
|
||||||
rm -rf libltdl src/libltdl src/ltdl.h
|
rm -rf libltdl src/libltdl src/ltdl.h
|
||||||
run_and_check $lam_libtoolize --automake --copy --ltdl
|
run_and_check $lam_libtoolize --automake --copy --ltdl
|
||||||
mv libltdl src
|
mv libltdl src
|
||||||
@ -699,7 +699,7 @@ fi
|
|||||||
|
|
||||||
# figure out if we're at the top level of the LAM tree, a module's
|
# figure out if we're at the top level of the LAM tree, a module's
|
||||||
# top-level directory, or somewhere else.
|
# top-level directory, or somewhere else.
|
||||||
if test -f VERSION -a -f configure.ac -a -f src/include/mpi.h ; then
|
if test -f VERSION -a -f configure.ac -a -f include/mpi.h ; then
|
||||||
# Top level of LAM tree
|
# Top level of LAM tree
|
||||||
lamdir="`pwd`"
|
lamdir="`pwd`"
|
||||||
elif test -f configure.in -o -f configure.ac -o -f configure.params ; then
|
elif test -f configure.in -o -f configure.ac -o -f configure.params ; then
|
||||||
|
10
configure.ac
10
configure.ac
@ -70,7 +70,7 @@ if test "$LAM_TOP_BUILDDIR" != "$LAM_TOP_SRCDIR"; then
|
|||||||
AC_MSG_NOTICE([Detected VPATH build])
|
AC_MSG_NOTICE([Detected VPATH build])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Setup the top of the src/include/lam_config.h file
|
# Setup the top of the include/lam_config.h file
|
||||||
|
|
||||||
AH_TOP([/* -*- c -*-
|
AH_TOP([/* -*- c -*-
|
||||||
*
|
*
|
||||||
@ -643,8 +643,8 @@ lam_show_subtitle "Wrapper compiler flags"
|
|||||||
# purely aesthetic.
|
# purely aesthetic.
|
||||||
#
|
#
|
||||||
|
|
||||||
CPPFLAGS='-I$(top_srcdir)/src -I$(top_srcdir)/src/include -I$(top_builddir)/src'" $CPPFLAGS"
|
CPPFLAGS='-I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src'" $CPPFLAGS"
|
||||||
CXXCPPFLAGS='-I$(top_srcdir)/src -I$(top_srcdir)/src/include -I$(top_builddir)/src'" $CXXCPPFLAGS"
|
CXXCPPFLAGS='-I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src'" $CXXCPPFLAGS"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Adding WRAPPER_* flags so that extra flags needed for wrappper compilers
|
# Adding WRAPPER_* flags so that extra flags needed for wrappper compilers
|
||||||
@ -715,12 +715,14 @@ AC_SUBST(FFLAGS)
|
|||||||
|
|
||||||
lam_show_subtitle "Final output"
|
lam_show_subtitle "Final output"
|
||||||
|
|
||||||
AM_CONFIG_HEADER([src/include/lam_config.h])
|
AM_CONFIG_HEADER([include/lam_config.h])
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
|
|
||||||
config/Makefile
|
config/Makefile
|
||||||
|
|
||||||
|
include/Makefile
|
||||||
|
|
||||||
src/Makefile
|
src/Makefile
|
||||||
src/include/Makefile
|
src/include/Makefile
|
||||||
|
|
||||||
|
25
include/Makefile.am
Обычный файл
25
include/Makefile.am
Обычный файл
@ -0,0 +1,25 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
#
|
||||||
|
# $HEADER$
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(top_srcdir)/config/Makefile.options
|
||||||
|
|
||||||
|
include_HEADERS = \
|
||||||
|
lam_config.h \
|
||||||
|
lam_config_bottom.h \
|
||||||
|
mpi.h \
|
||||||
|
mpif.h
|
||||||
|
|
||||||
|
# Add a hook to run *after* the file lam_config.h has been installed
|
||||||
|
# out to the target location. It changes the pesky PACKAGE_* macros
|
||||||
|
# that autoconf automatically generates (and there is no way of
|
||||||
|
# turning off) into LAM_MPI_PACKAGE_* in order to make <mpi.h> safe to
|
||||||
|
# include with other files.
|
||||||
|
|
||||||
|
install-data-hook:
|
||||||
|
sed -e 's/define PACKAGE/define LAM_MPI_PACKAGE/' \
|
||||||
|
$(DESTDIR)$(includedir)/lam_config.h \
|
||||||
|
> $(DESTDIR)$(includedir)/lam_config.h.install
|
||||||
|
mv $(DESTDIR)$(includedir)/lam_config.h.install \
|
||||||
|
$(DESTDIR)$(includedir)/lam_config.h
|
@ -12,10 +12,10 @@
|
|||||||
#define DATATYPE_H_HAS_BEEN_INCLUDED
|
#define DATATYPE_H_HAS_BEEN_INCLUDED
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
|
#include "include/types.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
#include "lfc/lam_hash_table.h"
|
#include "lfc/lam_hash_table.h"
|
||||||
#include "types.h"
|
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
|
|
||||||
#define DT_LOOP 0x00
|
#define DT_LOOP 0x00
|
||||||
|
@ -60,8 +60,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
#include "threads/thread.h"
|
#include "threads/thread.h"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "group/group.h"
|
#include "group/group.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
|
|
||||||
/* define class information */
|
/* define class information */
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "group/group.h"
|
#include "group/group.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
|
|
||||||
void lam_set_group_rank(lam_group_t *group, lam_proc_t *proc_pointer)
|
void lam_set_group_rank(lam_group_t *group, lam_proc_t *proc_pointer)
|
||||||
{
|
{
|
||||||
|
@ -6,20 +6,8 @@
|
|||||||
include $(top_srcdir)/config/Makefile.options
|
include $(top_srcdir)/config/Makefile.options
|
||||||
|
|
||||||
include_HEADERS = \
|
include_HEADERS = \
|
||||||
lam_config.h \
|
atomic.h \
|
||||||
lam_config_bottom.h \
|
constants.h \
|
||||||
mpi.h \
|
lam.h \
|
||||||
mpif.h
|
totalview.h \
|
||||||
|
types.h
|
||||||
# Add a hook to run *after* the file lam_config.h has been installed
|
|
||||||
# out to the target location. It changes the pesky PACKAGE_* macros
|
|
||||||
# that autoconf automatically generates (and there is no way of
|
|
||||||
# turning off) into LAM_MPI_PACKAGE_* in order to make <mpi.h> safe to
|
|
||||||
# include with other files.
|
|
||||||
|
|
||||||
install-data-hook:
|
|
||||||
sed -e 's/define PACKAGE/define LAM_MPI_PACKAGE/' \
|
|
||||||
$(DESTDIR)$(includedir)/lam_config.h \
|
|
||||||
> $(DESTDIR)$(includedir)/lam_config.h.install
|
|
||||||
mv $(DESTDIR)$(includedir)/lam_config.h.install \
|
|
||||||
$(DESTDIR)$(includedir)/lam_config.h
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
#include "util/strncpy.h"
|
#include "util/strncpy.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "lam.h"
|
#include "include/lam.h"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
|
|
||||||
/* VPS: Just to compile right now, has to move later on */
|
/* VPS: Just to compile right now, has to move later on */
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "lfc/lam_hash_table.h"
|
#include "lfc/lam_hash_table.h"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#define LAM_HASH_TABLE_H
|
#define LAM_HASH_TABLE_H
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_pointer_array.h"
|
#include "lfc/lam_pointer_array.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
#if LAM_ENABLE_DEBUG
|
#if LAM_ENABLE_DEBUG
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/cmd_line.h"
|
#include "util/cmd_line.h"
|
||||||
#include "util/argv.h"
|
#include "util/argv.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/coll/coll.h"
|
#include "mca/coll/coll.h"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
/* Ensure to get the right <ltdl.h> */
|
/* Ensure to get the right <ltdl.h> */
|
||||||
#include "libltdl/ltdl.h"
|
#include "libltdl/ltdl.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
/* Ensure to get the right <ltdl.h> */
|
/* Ensure to get the right <ltdl.h> */
|
||||||
#include "libltdl/ltdl.h"
|
#include "libltdl/ltdl.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_value_array.h"
|
#include "lfc/lam_value_array.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/mca_base_param.h"
|
#include "mca/base/mca_base_param.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/coll/coll.h"
|
#include "mca/coll/coll.h"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/oob/oob.h"
|
#include "mca/oob/oob.h"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/oob/oob.h"
|
#include "mca/oob/oob.h"
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/pcm/pcm.h"
|
#include "mca/pcm/pcm.h"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/pcm/pcm.h"
|
#include "mca/pcm/pcm.h"
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/pml/pml.h"
|
#include "mca/pml/pml.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#define MCA_PML_H
|
#define MCA_PML_H
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "lam.h"
|
#include "include/lam.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "communicator/communicator.h"
|
#include "communicator/communicator.h"
|
||||||
#include "datatype/datatype.h"
|
#include "datatype/datatype.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/ptl/ptl.h"
|
#include "mca/ptl/ptl.h"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "communicator/communicator.h"
|
#include "communicator/communicator.h"
|
||||||
#include "mca/pml/pml.h"
|
#include "mca/pml/pml.h"
|
||||||
#include "mca/ptl/ptl.h"
|
#include "mca/ptl/ptl.h"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "mca/ptl/base/ptl_base_comm.h"
|
#include "mca/ptl/base/ptl_base_comm.h"
|
||||||
#include "mca/ptl/base/ptl_base_recvreq.h"
|
#include "mca/ptl/base/ptl_base_recvreq.h"
|
||||||
#include "mca/ptl/base/ptl_base_recvfrag.h"
|
#include "mca/ptl/base/ptl_base_recvfrag.h"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#define MCA_PTL_H
|
#define MCA_PTL_H
|
||||||
|
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "lam.h"
|
#include "include/lam.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "proc/proc.h"
|
#include "proc/proc.h"
|
||||||
#include "mca/pml/pml.h"
|
#include "mca/pml/pml.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mca/mca.h"
|
#include "mca/mca.h"
|
||||||
#include "mca/base/base.h"
|
#include "mca/base/base.h"
|
||||||
#include "mca/registry/registry.h"
|
#include "mca/registry/registry.h"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "mem/seg_list.h"
|
#include "mem/seg_list.h"
|
||||||
#include "mem/mem_pool.h"
|
#include "mem/mem_pool.h"
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
#include "mem/mem_globals.h"
|
#include "mem/mem_globals.h"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include <sys/errno.h>
|
#include <sys/errno.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "mem/mem_pool.h"
|
#include "mem/mem_pool.h"
|
||||||
#include "mem/sharedmem_util.h"
|
#include "mem/sharedmem_util.h"
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#ifndef LAM_MEMORY_POOL_H
|
#ifndef LAM_MEMORY_POOL_H
|
||||||
#define LAM_MEMORY_POOL_H
|
#define LAM_MEMORY_POOL_H
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
#include "mem/allocator.h"
|
#include "mem/allocator.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "util/strncpy.h"
|
#include "util/strncpy.h"
|
||||||
#include "totalview.h"
|
#include "include/totalview.h"
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
#include "mpi/c/bindings.h"
|
#include "mpi/c/bindings.h"
|
||||||
#include "communicator/communicator.h"
|
#include "communicator/communicator.h"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "util/strncpy.h"
|
#include "util/strncpy.h"
|
||||||
#include "totalview.h"
|
#include "include/totalview.h"
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
#include "mpi/c/bindings.h"
|
#include "mpi/c/bindings.h"
|
||||||
#include "communicator/communicator.h"
|
#include "communicator/communicator.h"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* $HEADER$
|
* $HEADER$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_object.h"
|
#include "lfc/lam_object.h"
|
||||||
|
|
||||||
typedef int affinity_t;
|
typedef int affinity_t;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#ifndef LAM_PROC
|
#ifndef LAM_PROC
|
||||||
#define LAM_PROC
|
#define LAM_PROC
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
#include "group/group.h"
|
#include "group/group.h"
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "mpi.h"
|
#include "mpi.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "runtime/runtime.h"
|
#include "runtime/runtime.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* $HEADER$
|
* $HEADER$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "threads/thread.h"
|
#include "threads/thread.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/argv.h"
|
#include "util/argv.h"
|
||||||
#include "util/strncpy.h"
|
#include "util/strncpy.h"
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#ifndef LAM_ARGV_H
|
#ifndef LAM_ARGV_H
|
||||||
#define LAM_ARGV_H
|
#define LAM_ARGV_H
|
||||||
|
|
||||||
#include "types.h"
|
#include "include/types.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#define LAM_CMD_LINE_H
|
#define LAM_CMD_LINE_H
|
||||||
|
|
||||||
#include "lam_config.h"
|
#include "lam_config.h"
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
#include "util/argv.h"
|
#include "util/argv.h"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/few.h"
|
#include "util/few.h"
|
||||||
|
|
||||||
/** @file **/
|
/** @file **/
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "lfc/lam_list.h"
|
#include "lfc/lam_list.h"
|
||||||
#include "util/if.h"
|
#include "util/if.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "constants.h"
|
#include "include/constants.h"
|
||||||
#include "util/output.h"
|
#include "util/output.h"
|
||||||
#include "threads/mutex.h"
|
#include "threads/mutex.h"
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user