Changeset 1245
- Timestamp:
- 08/02/08 12:21:48 (20 months ago)
- Location:
- mpich2/trunk/src/mpi/coll
- Files:
-
- 12 modified
-
opband.c (modified) (1 diff)
-
opbor.c (modified) (1 diff)
-
opbxor.c (modified) (1 diff)
-
opland.c (modified) (1 diff)
-
oplor.c (modified) (1 diff)
-
oplxor.c (modified) (1 diff)
-
opmax.c (modified) (1 diff)
-
opmaxloc.c (modified) (1 diff)
-
opmin.c (modified) (1 diff)
-
opminloc.c (modified) (1 diff)
-
opprod.c (modified) (1 diff)
-
opsum.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mpich2/trunk/src/mpi/coll/opband.c
r999 r1245 165 165 /* --BEGIN ERROR HANDLING-- */ 166 166 default: { 167 MPICH_PerThread_t *p;168 MPIR_GetPerThread(&p);169 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BAND" );167 MPIU_THREADPRIV_DECL; 168 MPIU_THREADPRIV_GET; 169 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BAND" ); 170 170 break; 171 171 } -
mpich2/trunk/src/mpi/coll/opbor.c
r999 r1245 164 164 /* --BEGIN ERROR HANDLING-- */ 165 165 default: { 166 MPICH_PerThread_t *p;167 MPIR_GetPerThread(&p);168 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BOR" );166 MPIU_THREADPRIV_DECL; 167 MPIU_THREADPRIV_GET; 168 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BOR" ); 169 169 break; 170 170 } -
mpich2/trunk/src/mpi/coll/opbxor.c
r999 r1245 165 165 /* --BEGIN ERROR HANDLING-- */ 166 166 default: { 167 MPICH_PerThread_t *p;168 MPIR_GetPerThread(&p);169 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BXOR" );167 MPIU_THREADPRIV_DECL; 168 MPIU_THREADPRIV_GET; 169 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_BXOR" ); 170 170 break; 171 171 } -
mpich2/trunk/src/mpi/coll/opland.c
r999 r1245 228 228 /* --BEGIN ERROR HANDLING-- */ 229 229 default: { 230 MPICH_PerThread_t *p;231 MPIR_GetPerThread(&p);232 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LAND" );230 MPIU_THREADPRIV_DECL; 231 MPIU_THREADPRIV_GET; 232 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LAND" ); 233 233 break; 234 234 } -
mpich2/trunk/src/mpi/coll/oplor.c
r999 r1245 227 227 /* --BEGIN ERROR HANDLING-- */ 228 228 default: { 229 MPICH_PerThread_t *p;230 MPIR_GetPerThread(&p);231 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LOR" );229 MPIU_THREADPRIV_DECL; 230 MPIU_THREADPRIV_GET; 231 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LOR" ); 232 232 break; 233 233 } -
mpich2/trunk/src/mpi/coll/oplxor.c
r999 r1245 228 228 /* --BEGIN ERROR HANDLING-- */ 229 229 default: { 230 MPICH_PerThread_t *p;231 MPIR_GetPerThread(&p);232 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LXOR" );230 MPIU_THREADPRIV_DECL; 231 MPIU_THREADPRIV_GET; 232 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_LXOR" ); 233 233 break; 234 234 } -
mpich2/trunk/src/mpi/coll/opmax.c
r999 r1245 215 215 /* --BEGIN ERROR HANDLING-- */ 216 216 default: { 217 MPICH_PerThread_t *p;218 MPIR_GetPerThread(&p);219 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MAX" );217 MPIU_THREADPRIV_DECL; 218 MPIU_THREADPRIV_GET; 219 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MAX" ); 220 220 break; 221 221 } -
mpich2/trunk/src/mpi/coll/opmaxloc.c
r100 r1245 180 180 /* --BEGIN ERROR HANDLING-- */ 181 181 default: { 182 MPICH_PerThread_t *p;183 MPIR_GetPerThread(&p);184 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MAXLOC" );182 MPIU_THREADPRIV_DECL; 183 MPIU_THREADPRIV_GET; 184 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MAXLOC" ); 185 185 break; 186 186 } -
mpich2/trunk/src/mpi/coll/opmin.c
r999 r1245 215 215 /* --BEGIN ERROR HANDLING-- */ 216 216 default: { 217 MPICH_PerThread_t *p;218 MPIR_GetPerThread(&p);219 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MIN" );217 MPIU_THREADPRIV_DECL; 218 MPIU_THREADPRIV_GET; 219 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MIN" ); 220 220 break; 221 221 } -
mpich2/trunk/src/mpi/coll/opminloc.c
r100 r1245 178 178 /* --BEGIN ERROR HANDLING-- */ 179 179 default: { 180 MPICH_PerThread_t *p;181 MPIR_GetPerThread(&p);182 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MINLOC" );180 MPIU_THREADPRIV_DECL; 181 MPIU_THREADPRIV_GET; 182 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_MINLOC" ); 183 183 break; 184 184 } -
mpich2/trunk/src/mpi/coll/opprod.c
r1144 r1245 297 297 /* --BEGIN ERROR HANDLING-- */ 298 298 default: { 299 MPICH_PerThread_t *p;300 MPIR_GetPerThread(&p);301 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_PROD" );299 MPIU_THREADPRIV_DECL; 300 MPIU_THREADPRIV_GET; 301 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_PROD" ); 302 302 break; 303 303 } -
mpich2/trunk/src/mpi/coll/opsum.c
r1131 r1245 293 293 /* --BEGIN ERROR HANDLING-- */ 294 294 default: { 295 MPICH_PerThread_t *p;296 MPIR_GetPerThread(&p);297 p->op_errno= MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_SUM" );295 MPIU_THREADPRIV_DECL; 296 MPIU_THREADPRIV_GET; 297 MPIU_THREADPRIV_FIELD(op_errno) = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OP, "**opundefined","**opundefined %s", "MPI_SUM" ); 298 298 break; 299 299 }
