1
1

- Attribute Nonnull may take an argument __opal_attribute_nonnull__

This commit was SVN r13392.
Этот коммит содержится в:
Rainer Keller 2007-01-31 15:07:54 +00:00
родитель 289fbd08de
Коммит 1766b7e90d

Просмотреть файл

@ -402,9 +402,11 @@ static inline uint16_t ntohs(uint16_t netvar) { return netvar; }
#endif
#if OMPI_HAVE_ATTRIBUTE_NONNULL
# define __opal_attribute_nonnull__ __attribute__((__nonnull__))
# define __opal_attribute_nonnull__(a) __attribute__((__nonnull__(a)))
# define __opal_attribute_nonnull_all__ __attribute__((__nonnull__))
#else
# define __opal_attribute_nonnull__
# define __opal_attribute_nonnull__(a)
# define __opal_attribute_nonnull_all__
#endif
#if OMPI_HAVE_ATTRIBUTE_NORETURN