From a72a7f1d26e9e40c2ba676569aeaad4085f9cc2a Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Sat, 10 Jan 2004 00:55:24 +0000 Subject: [PATCH] * First take at the RTE interface. Obviously doesn't work, but at least can generate some doxygen API documentation This commit was SVN r193. --- configure.ac | 1 + src/lam/Makefile.am | 5 +++-- src/lam/constants.h | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3cef68bc36..f504e25e31 100644 --- a/configure.ac +++ b/configure.ac @@ -376,6 +376,7 @@ AC_CONFIG_FILES([ src/lam/ctnetwork/Makefile src/lam/lfc/Makefile src/lam/mem/Makefile + src/lam/runtime/Makefile src/lam/os/Makefile src/lam/os/cygwin/Makefile diff --git a/src/lam/Makefile.am b/src/lam/Makefile.am index 8afeae1a14..bd47dc18ed 100644 --- a/src/lam/Makefile.am +++ b/src/lam/Makefile.am @@ -5,7 +5,7 @@ include $(top_srcdir)/config/Makefile.options -SUBDIRS = ctnetwork lfc mem os threads util +SUBDIRS = ctnetwork lfc mem os threads util runtime # If the --enable-single-library flag was given to configure, then the # user wants to merge liblam and libmpi into a single big, honkin' @@ -19,7 +19,8 @@ sources = \ lfc/liblfc.la \ mem/libmem.la \ threads/libthreads.la \ - util/libutil.la + util/libutil.la \ + runtime/libruntime.la # List the names of the output libraries here diff --git a/src/lam/constants.h b/src/lam/constants.h index 13d10193c8..001c78b355 100644 --- a/src/lam/constants.h +++ b/src/lam/constants.h @@ -16,7 +16,10 @@ enum { LAM_ERR_RECV_LESS_THAN_POSTED = -6, LAM_ERR_RECV_MORE_THAN_POSTED = -7, LAM_ERR_NO_MATCH_YET = -8, - LAM_ERR_FATAL = -9 + LAM_ERR_FATAL = -9, + LAM_ERR_NOT_IMPLEMENTED = -10, + LAM_ERR_NOT_SUPPORTED = -11, + LAM_ERR_INTERUPTED = -12 }; #endif /* LAM_CONSTANTS_H */