1
1

shmem: remove unused defines

fixed by Roman, reviewed by MikeD
cmr=v1.7.5:reviewer=ompi-rm1.7

This commit was SVN r30735.
This commit is contained in:
Mike Dubman 2014-02-15 06:43:08 +00:00
parent 3f9db36e0d
commit 96142b31bd
7 changed files with 0 additions and 23 deletions

View File

@ -70,8 +70,6 @@ enum {
OSHMEM_ERR_DATA_OVERWRITE_ATTEMPT = ORTE_ERR_DATA_OVERWRITE_ATTEMPT
};
#define OSHMEM_ERR_MAX (OSHMEM_ERR_BASE - 1)
/* C datatypes */
/*

View File

@ -31,8 +31,6 @@
#if OSHMEM_FCA_VERSION == 12
#define OSHMEM_FCA_ALLGATHER 0
#define FCA_API_ABI_MAJOR 1
#define FCA_API_ABI_MINOR 2
#define FCA_MAJOR_BIT 24ul
#define FCA_MINOR_BIT 16ul
#define EUSESHMEM 287

View File

@ -84,7 +84,6 @@ mca_scoll_fca_component_t mca_scoll_fca_component = {
};
#define FCA_API_CLEAR_MICRO(__x) ((__x>>FCA_MINOR_BIT)<<FCA_MINOR_BIT)
#define FCA_API_VER(__major,__minor) (__major<<FCA_MAJOR_BIT | __minor<<FCA_MINOR_BIT)
/**
* * Called from FCA blocking functions to progress MPI

View File

@ -41,7 +41,6 @@
#endif
#define MXM_SHMEM_MQ_ID 0x7119
#define MXM_SHMEM_TAG 0x7
/* start request explicit ack once our buffer pool is less than watermark */
#define SPML_IKRIT_PUT_LOW_WATER 16

View File

@ -32,7 +32,6 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#define ILLEGAL_ORDER -1
#include "oshmem/runtime/runtime.h"
/* Turn ON/OFF debug output from build (default 0) */

View File

@ -66,9 +66,6 @@ typedef int (SHMEM_Grequest_query_function)(void *, SHMEM_Status *);
typedef int (SHMEM_Grequest_free_function)(void *);
typedef int (SHMEM_Grequest_cancel_function)(void *, int);
#define SHMEM_STATUS_IGNORE ((SHMEM_Status *) 0)
#define SHMEM_STATUSES_IGNORE ((SHMEM_Status *) 0)
#define SHMEM_REQUEST_NULL OSHMEM_PREDEFINED_GLOBAL(SHMEM_Request, oshmem_request_null)
/*

View File

@ -61,19 +61,6 @@ enum {
#define OSHMEM_THREADLEVEL_SERIALIZED_BF 0x00000004
#define OSHMEM_THREADLEVEL_MULTIPLE_BF 0x00000008
#define OSHMEM_THREADLEVEL_SET_BITFLAG(threadlevelin,threadlevelout) { \
if ( SHMEM_THREAD_SINGLE == threadlevelin ) { \
threadlevelout |= OSHMEM_THREADLEVEL_SINGLE_BF; \
} else if ( SHMEM_THREAD_FUNNELED == threadlevelin ) { \
threadlevelout |= OSHMEM_THREADLEVEL_FUNNELED_BF; \
} else if ( SHMEM_THREAD_SERIALIZED == threadlevelin ) { \
threadlevelout |= OSHMEM_THREADLEVEL_SERIALIZED_BF; \
} else if ( SHMEM_THREAD_MULTIPLE == threadlevelin ) { \
threadlevelout |= OSHMEM_THREADLEVEL_MULTIPLE_BF; \
}}
#define OSHMEM_THREADLEVEL_IS_MULTIPLE(threadlevel) (threadlevel & OSHMEM_THREADLEVEL_MULTIPLE_BF)
/** In ompi_mpi_init: the lists of Fortran 90 mathing datatypes.
* We need these lists and hashtables in order to satisfy the new
* requirements introduced in MPI 2-1 Sect. 10.2.5,