src/hotspot/share/utilities/macros.hpp
changeset 59053 ba6c248cae19
parent 54573 b73893f7fee3
equal deleted inserted replaced
59051:f0312c7d5b37 59053:ba6c248cae19
   129 #else
   129 #else
   130 #define NOT_MANAGEMENT_RETURN        {}
   130 #define NOT_MANAGEMENT_RETURN        {}
   131 #define NOT_MANAGEMENT_RETURN_(code) { return code; }
   131 #define NOT_MANAGEMENT_RETURN_(code) { return code; }
   132 #endif // INCLUDE_MANAGEMENT
   132 #endif // INCLUDE_MANAGEMENT
   133 
   133 
   134 #ifndef INCLUDE_CMSGC
       
   135 #define INCLUDE_CMSGC 1
       
   136 #endif // INCLUDE_CMSGC
       
   137 
       
   138 #if INCLUDE_CMSGC
       
   139 #define CMSGC_ONLY(x) x
       
   140 #define CMSGC_ONLY_ARG(arg) arg,
       
   141 #define NOT_CMSGC(x)
       
   142 #define NOT_CMSGC_RETURN        /* next token must be ; */
       
   143 #define NOT_CMSGC_RETURN_(code) /* next token must be ; */
       
   144 #else
       
   145 #define CMSGC_ONLY(x)
       
   146 #define CMSGC_ONLY_ARG(x)
       
   147 #define NOT_CMSGC(x) x
       
   148 #define NOT_CMSGC_RETURN        {}
       
   149 #define NOT_CMSGC_RETURN_(code) { return code; }
       
   150 #endif // INCLUDE_CMSGC
       
   151 
       
   152 #ifndef INCLUDE_EPSILONGC
   134 #ifndef INCLUDE_EPSILONGC
   153 #define INCLUDE_EPSILONGC 1
   135 #define INCLUDE_EPSILONGC 1
   154 #endif // INCLUDE_EPSILONGC
   136 #endif // INCLUDE_EPSILONGC
   155 
   137 
   156 #if INCLUDE_EPSILONGC
   138 #if INCLUDE_EPSILONGC