commits
Threads by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- 2054 discussions
20 Dec '12
Author: goodell
Date: 2012-12-20 20:18:56 -0600 (Thu, 20 Dec 2012)
New Revision: 10801
Modified:
mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h
mpich2/trunk/src/mpi/romio/mpi-io/open.c
mpich2/trunk/src/mpi/romio/mpi-io/set_info.c
mpich2/trunk/src/mpi/romio/mpi-io/set_view.c
Log:
ROMIO: error checking for MPI_Comm and MPI_Info objects
1). There was error checking on the comm object in
MPI_Comm_test_inter(comm, &flag); So if the return value of
MPI_Comm_test_inter is not MPI_SUCCESS, then the comm is either an
invalid MPI_Comm handle or intercommunicator handle.
2). A new macro MPIO_CHECK_INFO is added into adioi_error.h. It will
call MPI_Info_dup, unless there is no more memory space left , as
long as the info object is valid, this function will return
MPI_SUCCESS; or it will return an error code. So by checking the
return value of MPI_Info_dup, we could achieve the purpose of
checking MPI_Info handles.
Based on patch 0006 from the second round of IBM's error checking
patches. Replaces 0009 from the first round and augments r10637.
Modified: mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h
===================================================================
--- mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h 2012-12-21 02:18:52 UTC (rev 10800)
+++ mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h 2012-12-21 02:18:56 UTC (rev 10801)
@@ -160,3 +160,14 @@
#define ADIOI_TEST_DEFERRED(fh, myname, error_code)\
if(! (fh)->is_open ) {\
ADIO_ImmediateOpen((fh), (error_code)); }
+
+/* Check MPI_Info object by calling MPI_Info_dup, if the info object is valid
+then the dup operation will succeed */
+#define MPIO_CHECK_INFO(info, error_code) { \
+ MPI_Info dupinfo; \
+ error_code = MPI_Info_dup(info, &dupinfo); \
+ if(error_code != MPI_SUCCESS) goto fn_fail; \
+ if (dupinfo != MPI_INFO_NULL) { \
+ MPI_Info_free(&dupinfo); \
+ } \
+}
Modified: mpich2/trunk/src/mpi/romio/mpi-io/open.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/open.c 2012-12-21 02:18:52 UTC (rev 10800)
+++ mpich2/trunk/src/mpi/romio/mpi-io/open.c 2012-12-21 02:18:56 UTC (rev 10801)
@@ -46,7 +46,7 @@
int MPI_File_open(MPI_Comm comm, const char *filename, int amode,
MPI_Info info, MPI_File *fh)
{
- int error_code, file_system, flag, tmp_amode=0, rank;
+ int error_code = MPI_SUCCESS, file_system, flag, tmp_amode=0, rank;
char *tmp;
MPI_Comm dupcomm;
ADIOI_Fns *fsops;
@@ -61,13 +61,15 @@
/* --BEGIN ERROR HANDLING-- */
MPIO_CHECK_COMM(comm, myname, error_code);
+ if(info != MPI_INFO_NULL)
+ MPIO_CHECK_INFO(info, error_code);
/* --END ERROR HANDLING-- */
- MPI_Comm_test_inter(comm, &flag);
+ error_code = MPI_Comm_test_inter(comm, &flag);
/* --BEGIN ERROR HANDLING-- */
- if (flag)
+ if (error_code || flag)
{
- error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
+ error_code = MPIO_Err_create_code(error_code, MPIR_ERR_RECOVERABLE,
myname, __LINE__, MPI_ERR_COMM,
"**commnotintra", 0);
goto fn_fail;
Modified: mpich2/trunk/src/mpi/romio/mpi-io/set_info.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/set_info.c 2012-12-21 02:18:52 UTC (rev 10800)
+++ mpich2/trunk/src/mpi/romio/mpi-io/set_info.c 2012-12-21 02:18:56 UTC (rev 10801)
@@ -44,6 +44,7 @@
/* --BEGIN ERROR HANDLING-- */
MPIO_CHECK_FILE_HANDLE(adio_fh, myname, error_code);
+ MPIO_CHECK_INFO(info, error_code);
/* --END ERROR HANDLING-- */
/* set new info */
@@ -58,4 +59,6 @@
MPIU_THREAD_CS_EXIT(ALLFUNC,);
return error_code;
+fn_fail:
+ goto fn_exit;
}
Modified: mpich2/trunk/src/mpi/romio/mpi-io/set_view.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/set_view.c 2012-12-21 02:18:52 UTC (rev 10800)
+++ mpich2/trunk/src/mpi/romio/mpi-io/set_view.c 2012-12-21 02:18:56 UTC (rev 10801)
@@ -106,6 +106,9 @@
error_code = MPIO_Err_return_file(adio_fh, error_code);
goto fn_exit;
}
+ if(info != MPI_INFO_NULL){
+ MPIO_CHECK_INFO(info, error_code);
+ }
/* --END ERROR HANDLING-- */
MPI_Type_size(filetype, &filetype_size);
@@ -191,4 +194,9 @@
MPIU_THREAD_CS_EXIT(ALLFUNC,);
return error_code;
+fn_fail:
+ /* --BEGIN ERROR HANDLING-- */
+ error_code = MPIO_Err_return_file(fh, error_code);
+ goto fn_exit;
+ /* --END ERROR HANDLING-- */
}
1
0
Author: goodell
Date: 2012-12-20 20:18:52 -0600 (Thu, 20 Dec 2012)
New Revision: 10800
Modified:
mpich2/trunk/src/mpi/romio/mpi-io/prealloc.c
mpich2/trunk/src/mpi/romio/mpi-io/set_size.c
Log:
ROMIO: check for consistent prealloc sizes
By using MPI_Allreduce to get the maximum value and minimum value of all
sizes, when the two values are identical, all processes have same values
of size. The problem of checking the sizes with MPI_Bcast is that the
root will pass the check while the others not.
Based on patch 0004 from the second round of IBM's error checking
patches.
Modified: mpich2/trunk/src/mpi/romio/mpi-io/prealloc.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/prealloc.c 2012-12-21 02:18:49 UTC (rev 10799)
+++ mpich2/trunk/src/mpi/romio/mpi-io/prealloc.c 2012-12-21 02:18:52 UTC (rev 10800)
@@ -38,7 +38,7 @@
int error_code=0, mynod=0;
ADIO_File adio_fh;
static char myname[] = "MPI_FILE_PREALLOCATE";
- MPI_Offset tmp_sz;
+ MPI_Offset tmp_sz, max_sz, min_sz;
#ifdef MPI_hpux
int fl_xmpi;
@@ -62,9 +62,10 @@
}
tmp_sz = size;
- MPI_Bcast(&tmp_sz, 1, ADIO_OFFSET, 0, adio_fh->comm);
+ MPI_Allreduce(&tmp_sz, &max_sz, 1, ADIO_OFFSET, MPI_MAX, adio_fh->comm);
+ MPI_Allreduce(&tmp_sz, &min_sz, 1, ADIO_OFFSET, MPI_MIN, adio_fh->comm);
- if (tmp_sz != size) {
+ if (max_sz != min_sz) {
error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
myname, __LINE__, MPI_ERR_ARG,
"**notsame", 0);
Modified: mpich2/trunk/src/mpi/romio/mpi-io/set_size.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/set_size.c 2012-12-21 02:18:49 UTC (rev 10799)
+++ mpich2/trunk/src/mpi/romio/mpi-io/set_size.c 2012-12-21 02:18:52 UTC (rev 10800)
@@ -37,7 +37,7 @@
int error_code;
ADIO_File adio_fh;
static char myname[] = "MPI_FILE_SET_SIZE";
- MPI_Offset tmp_sz;
+ MPI_Offset tmp_sz, max_sz, min_sz;
#ifdef MPI_hpux
int fl_xmpi;
@@ -65,10 +65,11 @@
/* --END ERROR HANDLING-- */
tmp_sz = size;
- MPI_Bcast(&tmp_sz, 1, ADIO_OFFSET, 0, adio_fh->comm);
+ MPI_Allreduce(&tmp_sz, &max_sz, 1, ADIO_OFFSET, MPI_MAX, adio_fh->comm);
+ MPI_Allreduce(&tmp_sz, &min_sz, 1, ADIO_OFFSET, MPI_MIN, adio_fh->comm);
/* --BEGIN ERROR HANDLING-- */
- if (tmp_sz != size) {
+ if (max_sz != min_sz) {
error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
myname, __LINE__, MPI_ERR_ARG,
"**notsame", 0);
1
0
r10799 - in mpich2/trunk/src: glue/romio include mpi/datatype mpi/romio/adio/include mpi/romio/mpi-io
by goodell@mcs.anl.gov 20 Dec '12
by goodell@mcs.anl.gov 20 Dec '12
20 Dec '12
Author: goodell
Date: 2012-12-20 20:18:49 -0600 (Thu, 20 Dec 2012)
New Revision: 10799
Modified:
mpich2/trunk/src/glue/romio/glue_romio.c
mpich2/trunk/src/include/glue_romio.h.in
mpich2/trunk/src/mpi/datatype/typeutil.c
mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h
mpich2/trunk/src/mpi/romio/mpi-io/mpioimpl.h
mpich2/trunk/src/mpi/romio/mpi-io/set_view.c
Log:
ROMIO: check whether datatypes are committed
This only works when ROMIO is built with MPICH.
Based on patch 0001 from the second round of IBM's error checking
patches. Replaces 0008 from the first round.
Modified: mpich2/trunk/src/glue/romio/glue_romio.c
===================================================================
--- mpich2/trunk/src/glue/romio/glue_romio.c 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/glue/romio/glue_romio.c 2012-12-21 02:18:49 UTC (rev 10799)
@@ -49,4 +49,30 @@
MPIU_THREAD_CS_EXIT(ALLFUNC,);
}
+/* will consider MPI_DATATYPE_NULL to be an error */
+#undef FUNCNAME
+#define FUNCNAME MPIR_Ext_datatype_iscommitted
+#undef FCNAME
+#define FCNAME MPIU_QUOTE(FUNCNAME)
+int MPIR_Ext_datatype_iscommitted(MPI_Datatype datatype)
+{
+ int mpi_errno = MPI_SUCCESS;
+ MPIR_ERRTEST_DATATYPE(datatype, "datatype", mpi_errno);
+ if (mpi_errno) MPIU_ERR_POP(mpi_errno);
+
+ if (HANDLE_GET_KIND(datatype) != HANDLE_KIND_BUILTIN) {
+ MPID_Datatype *datatype_ptr = NULL;
+ MPID_Datatype_get_ptr(datatype, datatype_ptr);
+
+ MPID_Datatype_valid_ptr(datatype_ptr, mpi_errno);
+ if (mpi_errno) MPIU_ERR_POP(mpi_errno);
+
+ MPID_Datatype_committed_ptr(datatype_ptr, mpi_errno);
+ if (mpi_errno) MPIU_ERR_POP(mpi_errno);
+ }
+
+fn_fail:
+ return mpi_errno;
+}
+
Modified: mpich2/trunk/src/include/glue_romio.h.in
===================================================================
--- mpich2/trunk/src/include/glue_romio.h.in 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/include/glue_romio.h.in 2012-12-21 02:18:49 UTC (rev 10799)
@@ -53,6 +53,9 @@
void MPIR_Ext_cs_enter_allfunc(void);
void MPIR_Ext_cs_exit_allfunc(void);
+/* to facilitate error checking */
+int MPIR_Ext_datatype_iscommitted(MPI_Datatype datatype);
+
/* prototypes for the mem tracing routines */
void *MPIU_trmalloc(size_t a, int lineno, const char fname[]);
void MPIU_trfree(void *a_ptr, int line, const char fname[]);
Modified: mpich2/trunk/src/mpi/datatype/typeutil.c
===================================================================
--- mpich2/trunk/src/mpi/datatype/typeutil.c 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/mpi/datatype/typeutil.c 2012-12-21 02:18:49 UTC (rev 10799)
@@ -324,3 +324,4 @@
MPIR_FINALIZE_CALLBACK_PRIO-1);
}
}
+
Modified: mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h
===================================================================
--- mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/mpi/romio/adio/include/adioi_error.h 2012-12-21 02:18:49 UTC (rev 10799)
@@ -58,16 +58,23 @@
goto fn_exit; \
}
-#define MPIO_CHECK_DATATYPE(fh, datatype, myname, error_code) \
-if (datatype == MPI_DATATYPE_NULL) { \
- error_code = MPIO_Err_create_code(MPI_SUCCESS, \
- MPIR_ERR_RECOVERABLE, \
- myname, __LINE__, \
- MPI_ERR_TYPE, \
- "**dtypenull", 0); \
- error_code = MPIO_Err_return_file(fh, error_code); \
- goto fn_exit; \
-}
+#define MPIO_CHECK_DATATYPE(fh, datatype, myname, error_code) \
+ do { \
+ if (datatype == MPI_DATATYPE_NULL) { \
+ error_code = MPIO_Err_create_code(MPI_SUCCESS, \
+ MPIR_ERR_RECOVERABLE, \
+ myname, __LINE__, \
+ MPI_ERR_TYPE, \
+ "**dtypenull", 0); \
+ } \
+ else { \
+ MPIO_DATATYPE_ISCOMMITTED(datatype, error_code); \
+ } \
+ if (error_code != MPI_SUCCESS) { \
+ error_code = MPIO_Err_return_file(fh, error_code); \
+ goto fn_exit; \
+ } \
+ } while (0)
#define MPIO_CHECK_READABLE(fh, myname, error_code) \
if (fh->access_mode & ADIO_WRONLY) { \
Modified: mpich2/trunk/src/mpi/romio/mpi-io/mpioimpl.h
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/mpioimpl.h 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/mpi/romio/mpi-io/mpioimpl.h 2012-12-21 02:18:49 UTC (rev 10799)
@@ -24,6 +24,12 @@
#define MPIU_THREAD_CS_ENTER_ALLFUNC(ctx_) MPIR_Ext_cs_enter_allfunc()
#define MPIU_THREAD_CS_EXIT_ALLFUNC(ctx_) MPIR_Ext_cs_exit_allfunc()
+/* committed datatype checking support in ROMIO */
+#define MPIO_DATATYPE_ISCOMMITTED(dtype_, err_) \
+ do { \
+ err_ = MPIR_Ext_datatype_iscommitted(dtype_); \
+ } while (0)
+
#else /* not ROMIO_INSIDE_MPICH */
/* Any MPI implementation that wishes to follow the thread-safety and
error reporting features provided by MPICH must implement these
@@ -31,6 +37,7 @@
of correct programs */
#define MPIU_THREAD_CS_ENTER(x,y)
#define MPIU_THREAD_CS_EXIT(x,y)
+#define MPIO_DATATYPE_ISCOMMITTED(dtype_, err_) do {} while (0)
#ifdef HAVE_WINDOWS_H
#define MPIU_UNREFERENCED_ARG(a) a
#else
Modified: mpich2/trunk/src/mpi/romio/mpi-io/set_view.c
===================================================================
--- mpich2/trunk/src/mpi/romio/mpi-io/set_view.c 2012-12-20 21:09:42 UTC (rev 10798)
+++ mpich2/trunk/src/mpi/romio/mpi-io/set_view.c 2012-12-21 02:18:49 UTC (rev 10799)
@@ -68,6 +68,11 @@
error_code = MPIO_Err_return_file(adio_fh, error_code);
goto fn_exit;
}
+ MPIO_DATATYPE_ISCOMMITTED(etype, error_code);
+ if (error_code != MPI_SUCCESS) {
+ error_code = MPIO_Err_return_file(adio_fh, error_code);
+ goto fn_exit;
+ }
if (filetype == MPI_DATATYPE_NULL) {
error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
@@ -76,6 +81,11 @@
error_code = MPIO_Err_return_file(adio_fh, error_code);
goto fn_exit;
}
+ MPIO_DATATYPE_ISCOMMITTED(filetype, error_code);
+ if (error_code != MPI_SUCCESS) {
+ error_code = MPIO_Err_return_file(adio_fh, error_code);
+ goto fn_exit;
+ }
if ((adio_fh->access_mode & MPI_MODE_SEQUENTIAL) &&
(disp != MPI_DISPLACEMENT_CURRENT))
@@ -102,7 +112,7 @@
MPI_Type_size(etype, &etype_size);
/* --BEGIN ERROR HANDLING-- */
- if (filetype_size % etype_size != 0)
+ if (etype_size != 0 && filetype_size % etype_size != 0)
{
error_code = MPIO_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE,
myname, __LINE__, MPI_ERR_ARG,
1
0
Author: goodell
Date: 2012-12-20 14:26:36 -0600 (Thu, 20 Dec 2012)
New Revision: 10797
Added:
mpich2/tags/release/mpich-3.0.1/
Log:
tagging the 3.0.1 release from trunk@10796
Property changes on: mpich2/tags/release/mpich-3.0.1
___________________________________________________________________
Added: svn:ignore
+ subsys_include.m4
configure
configure.lineno
config.log
config.status
config.cache
cache.base
*conf.cache
config.system
config.h.in
.mpich2
autom4te.cache
libtool
Makefile.in
Makefile
mpich2-doxygen
lib
*ebug*
*elease*
*.log
mpich2.ncb
mpich2.opt
mpich2.plg
mpich2.suo
coverage*
mpich*pgrs.html
bin
.err
.deps
unusederr.txt
www
cscope.out
cscope.files
*.user
winbuild
man
TAGS
TAGS.bak
README
README.envvar
include
share
aclocal.m4
config.lt
conf.mod
install
Added: svn:mergeinfo
+ /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0:10777,10779
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
1
0
Author: goodell
Date: 2012-12-20 14:24:14 -0600 (Thu, 20 Dec 2012)
New Revision: 10796
Modified:
mpich2/trunk/maint/version.m4
Log:
update version.m4 for 3.0.1 release
No ABI changes, just hydra fixes, so 10:0:0 becomes 10:1:0.
Modified: mpich2/trunk/maint/version.m4
===================================================================
--- mpich2/trunk/maint/version.m4 2012-12-20 18:58:40 UTC (rev 10795)
+++ mpich2/trunk/maint/version.m4 2012-12-20 20:24:14 UTC (rev 10796)
@@ -14,7 +14,7 @@
# changing this by playing with diversions, but then we would probably be
# playing with autotools-fire.
-m4_define([MPICH_VERSION_m4],[3.0])dnl
+m4_define([MPICH_VERSION_m4],[3.0.1])dnl
m4_define([MPICH_RELEASE_DATE_m4],[unreleased development copy])dnl
# For libtool ABI versioning rules see:
@@ -31,6 +31,6 @@
#
# 4. If any interfaces have been removed since the last public
# release, then set age to 0.
-m4_define([libmpich_so_version_m4],[10:0:0])dnl
+m4_define([libmpich_so_version_m4],[10:1:0])dnl
[#] end of __file__
1
0
Author: balaji
Date: 2012-12-19 23:55:27 -0600 (Wed, 19 Dec 2012)
New Revision: 10793
Modified:
mpich2/trunk/src/pm/hydra/pm/pmiserv/pmip_cb.c
Log:
We were not checking if the downstream stdin socket was valid before
setting it to nonblocking. We released 3.0 without this fix. God
help us with the bug reports!
No reviewer.
Modified: mpich2/trunk/src/pm/hydra/pm/pmiserv/pmip_cb.c
===================================================================
--- mpich2/trunk/src/pm/hydra/pm/pmiserv/pmip_cb.c 2012-12-20 05:32:54 UTC (rev 10792)
+++ mpich2/trunk/src/pm/hydra/pm/pmiserv/pmip_cb.c 2012-12-20 05:55:27 UTC (rev 10793)
@@ -704,8 +704,10 @@
process_id);
HYDU_ERR_POP(status, "create process returned error\n");
- status = HYDU_sock_set_nonblock(HYD_pmcd_pmip.downstream.in);
- HYDU_ERR_POP(status, "unable to set stdin socket to non-blocking\n");
+ if (HYD_pmcd_pmip.downstream.in != HYD_FD_UNSET) {
+ status = HYDU_sock_set_nonblock(HYD_pmcd_pmip.downstream.in);
+ HYDU_ERR_POP(status, "unable to set stdin socket to non-blocking\n");
+ }
HYDU_free_strlist(client_args);
1
0
Author: balaji
Date: 2012-12-19 23:06:15 -0600 (Wed, 19 Dec 2012)
New Revision: 10791
Modified:
mpich2/trunk/
mpich2/trunk/CHANGES
mpich2/trunk/confdb/
mpich2/trunk/confdb/aclocal_util.m4
mpich2/trunk/maint/version.m4
mpich2/trunk/src/mpi/romio/
mpich2/trunk/src/mpi/romio/.codingcheck
mpich2/trunk/src/mpi/romio/.config_params
mpich2/trunk/src/mpi/romio/COPYRIGHT
mpich2/trunk/src/mpi/romio/Makefile.am
mpich2/trunk/src/mpi/romio/README
mpich2/trunk/src/mpi/romio/adio/
mpich2/trunk/src/mpi/romio/autogen.sh
mpich2/trunk/src/mpi/romio/common/
mpich2/trunk/src/mpi/romio/configure.ac
mpich2/trunk/src/mpi/romio/doc/
mpich2/trunk/src/mpi/romio/include/
mpich2/trunk/src/mpi/romio/localdefs.in
mpich2/trunk/src/mpi/romio/mpi-io/
mpich2/trunk/src/mpi/romio/mpi2-other/
mpich2/trunk/src/mpi/romio/test-internal/
mpich2/trunk/src/mpi/romio/test/
mpich2/trunk/src/mpi/romio/util/
mpich2/trunk/src/mpid/
mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/portals4/
mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c
mpich2/trunk/src/mpl/src/mplstr.c
mpich2/trunk/src/pm/hydra/
mpich2/trunk/src/pm/hydra/Makefile.am
mpich2/trunk/src/pm/hydra/README
mpich2/trunk/src/pm/hydra/autogen.sh
mpich2/trunk/src/pm/hydra/configure.ac
mpich2/trunk/src/pm/hydra/examples/
mpich2/trunk/src/pm/hydra/hydra-doxygen.cfg.in
mpich2/trunk/src/pm/hydra/include/
mpich2/trunk/src/pm/hydra/mpichprereq
mpich2/trunk/src/pm/hydra/pm/
mpich2/trunk/src/pm/hydra/tools/
mpich2/trunk/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c
mpich2/trunk/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c
mpich2/trunk/src/pm/hydra/ui/
mpich2/trunk/src/pm/hydra/utils/
mpich2/trunk/winconfigure.wsf
Log:
Merge r10777 and r10779 from the mpich-3.0 branch.
Property changes on: mpich2/trunk
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
+ /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0:10777,10779
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
Modified: mpich2/trunk/CHANGES
===================================================================
--- mpich2/trunk/CHANGES 2012-12-20 05:05:48 UTC (rev 10790)
+++ mpich2/trunk/CHANGES 2012-12-20 05:06:15 UTC (rev 10791)
@@ -15,11 +15,11 @@
# Several other minor bug fixes, memory leak fixes, and code cleanup.
A full list of changes is available using:
- svn log -r10344:HEAD https://svn.mcs.anl.gov/repos/mpi/mpich2/tags/release/mpich-3.0rc1
+ svn log -r10344:HEAD https://svn.mcs.anl.gov/repos/mpi/mpich2/tags/release/mpich-3.0
... or at the following link:
- https://trac.mcs.anl.gov/projects/mpich2/log/mpich2/tags/release/mpich-3.0r…
+ https://trac.mcs.anl.gov/projects/mpich2/log/mpich2/tags/release/mpich-3.0?…
===============================================================================
Property changes on: mpich2/trunk/confdb
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/confdb:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb:7771-7802
/mpich2/branches/dev/error-return/confdb:7662-7670
/mpich2/branches/dev/ftb/confdb:5661-5730
/mpich2/branches/dev/groupfailed/confdb:9231
/mpich2/branches/dev/lapi/confdb:5817
/mpich2/branches/dev/nem-squash/confdb:9995-9998
/mpich2/branches/dev/reenableas/confdb:9355
/mpich2/branches/dev/wintcp_async_progress/confdb:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb:5406
+ /mpich2/branches/dev/ckpt2/confdb:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb:7771-7802
/mpich2/branches/dev/error-return/confdb:7662-7670
/mpich2/branches/dev/ftb/confdb:5661-5730
/mpich2/branches/dev/groupfailed/confdb:9231
/mpich2/branches/dev/lapi/confdb:5817
/mpich2/branches/dev/nem-squash/confdb:9995-9998
/mpich2/branches/dev/reenableas/confdb:9355
/mpich2/branches/dev/wintcp_async_progress/confdb:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/confdb:10777,10779
/mpich2/branches/release/mpich2-1.1.1/confdb:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb:5406
Property changes on: mpich2/trunk/confdb/aclocal_util.m4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/confdb/aclocal_util.m4:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb/aclocal_util.m4:7771-7802
/mpich2/branches/dev/error-return/confdb/aclocal_util.m4:7662-7670
/mpich2/branches/dev/ftb/confdb/aclocal_util.m4:5661-5730
/mpich2/branches/dev/groupfailed/confdb/aclocal_util.m4:9231
/mpich2/branches/dev/lapi/confdb/aclocal_util.m4:5817
/mpich2/branches/dev/nem-squash/confdb/aclocal_util.m4:9995-9998
/mpich2/branches/dev/reenableas/src/mpe2/src/slog2sdk/aclocal_util.m4:9355
/mpich2/branches/dev/wintcp_async_progress/confdb/aclocal_util.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb/aclocal_util.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb/aclocal_util.m4:5406
+ /mpich2/branches/dev/ckpt2/confdb/aclocal_util.m4:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb/aclocal_util.m4:7771-7802
/mpich2/branches/dev/error-return/confdb/aclocal_util.m4:7662-7670
/mpich2/branches/dev/ftb/confdb/aclocal_util.m4:5661-5730
/mpich2/branches/dev/groupfailed/confdb/aclocal_util.m4:9231
/mpich2/branches/dev/lapi/confdb/aclocal_util.m4:5817
/mpich2/branches/dev/nem-squash/confdb/aclocal_util.m4:9995-9998
/mpich2/branches/dev/reenableas/src/mpe2/src/slog2sdk/aclocal_util.m4:9355
/mpich2/branches/dev/wintcp_async_progress/confdb/aclocal_util.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/confdb/aclocal_util.m4:10777,10779
/mpich2/branches/release/mpich2-1.1.1/confdb/aclocal_util.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb/aclocal_util.m4:5406
Modified: mpich2/trunk/maint/version.m4
===================================================================
--- mpich2/trunk/maint/version.m4 2012-12-20 05:05:48 UTC (rev 10790)
+++ mpich2/trunk/maint/version.m4 2012-12-20 05:06:15 UTC (rev 10791)
@@ -14,7 +14,7 @@
# changing this by playing with diversions, but then we would probably be
# playing with autotools-fire.
-m4_define([MPICH_VERSION_m4],[3.0rc1])dnl
+m4_define([MPICH_VERSION_m4],[3.0])dnl
m4_define([MPICH_RELEASE_DATE_m4],[unreleased development copy])dnl
# For libtool ABI versioning rules see:
@@ -31,6 +31,6 @@
#
# 4. If any interfaces have been removed since the last public
# release, then set age to 0.
-m4_define([libmpich_so_version_m4],[9:0:0])dnl
+m4_define([libmpich_so_version_m4],[10:0:0])dnl
[#] end of __file__
Property changes on: mpich2/trunk/maint/version.m4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/maint/version.m4:5050
/mpich2/branches/dev/ckpt2/maint/version.m4:5057-6537
/mpich2/branches/dev/coll-err-ret/maint/version.m4:7771-7802
/mpich2/branches/dev/error-return/maint/version.m4:7662-7670
/mpich2/branches/dev/ftb/maint/version.m4:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/version.m4:9231
/mpich2/branches/dev/lapi/maint/version.m4:5817
/mpich2/branches/dev/nem-squash/maint/version.m4:9995-9998
/mpich2/branches/dev/reenableas/maint/version.m4:9355
/mpich2/branches/dev/wintcp_async_progress/maint/version.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/maint/version.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/maint/version.m4:5406
+ /mpich2/branches/dev/ckpt/maint/version.m4:5050
/mpich2/branches/dev/ckpt2/maint/version.m4:5057-6537
/mpich2/branches/dev/coll-err-ret/maint/version.m4:7771-7802
/mpich2/branches/dev/error-return/maint/version.m4:7662-7670
/mpich2/branches/dev/ftb/maint/version.m4:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/version.m4:9231
/mpich2/branches/dev/lapi/maint/version.m4:5817
/mpich2/branches/dev/nem-squash/maint/version.m4:9995-9998
/mpich2/branches/dev/reenableas/maint/version.m4:9355
/mpich2/branches/dev/wintcp_async_progress/maint/version.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/maint/version.m4:10777,10779
/mpich2/branches/release/mpich2-1.1.1/maint/version.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/maint/version.m4:5406
Property changes on: mpich2/trunk/src/mpi/romio
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio:9231*
/mpich2/branches/dev/lapi/src/mpi/romio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio:9355*
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio:9231*
/mpich2/branches/dev/lapi/src/mpi/romio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio:9355*
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio:5406
Property changes on: mpich2/trunk/src/mpi/romio/.codingcheck
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/.codingcheck:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.codingcheck:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.codingcheck:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.codingcheck:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.codingcheck:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.codingcheck:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.codingcheck:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.codingcheck:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.codingcheck:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.codingcheck:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.codingcheck:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.codingcheck:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/.codingcheck:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.codingcheck:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.codingcheck:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.codingcheck:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.codingcheck:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.codingcheck:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.codingcheck:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.codingcheck:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.codingcheck:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.codingcheck:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/.codingcheck:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.codingcheck:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.codingcheck:5406
Property changes on: mpich2/trunk/src/mpi/romio/.config_params
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/.config_params:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.config_params:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.config_params:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.config_params:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.config_params:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.config_params:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.config_params:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.config_params:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.config_params:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.config_params:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.config_params:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.config_params:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/.config_params:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.config_params:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.config_params:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.config_params:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.config_params:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.config_params:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.config_params:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.config_params:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.config_params:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.config_params:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/.config_params:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.config_params:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.config_params:5406
Property changes on: mpich2/trunk/src/mpi/romio/COPYRIGHT
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/COPYRIGHT:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/COPYRIGHT:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/COPYRIGHT:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/COPYRIGHT:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/COPYRIGHT:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/COPYRIGHT:9231
/mpich2/branches/dev/lapi/src/mpi/romio/COPYRIGHT:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/COPYRIGHT:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/COPYRIGHT:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/COPYRIGHT:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/COPYRIGHT:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/COPYRIGHT:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/COPYRIGHT:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/COPYRIGHT:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/COPYRIGHT:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/COPYRIGHT:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/COPYRIGHT:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/COPYRIGHT:9231
/mpich2/branches/dev/lapi/src/mpi/romio/COPYRIGHT:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/COPYRIGHT:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/COPYRIGHT:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/COPYRIGHT:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/COPYRIGHT:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/COPYRIGHT:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/COPYRIGHT:5406
Property changes on: mpich2/trunk/src/mpi/romio/Makefile.am
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/Makefile.am:9231
/mpich2/branches/dev/lapi/src/mpi/romio/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/Makefile.am:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/Makefile.am:9231
/mpich2/branches/dev/lapi/src/mpi/romio/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/Makefile.am:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/Makefile.am:5406
Property changes on: mpich2/trunk/src/mpi/romio/README
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/README:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/README:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/README:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/README:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/README:9231
/mpich2/branches/dev/lapi/src/mpi/romio/README:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/README:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/README:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/README:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/README:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/README:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/README:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/README:9231
/mpich2/branches/dev/lapi/src/mpi/romio/README:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/README:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/README:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/README:5406
Property changes on: mpich2/trunk/src/mpi/romio/adio
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/adio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/adio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/adio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/adio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/adio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/adio:9231
/mpich2/branches/dev/lapi/src/mpi/romio/adio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/adio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/adio:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/adio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/adio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/adio:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/adio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/adio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/adio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/adio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/adio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/adio:9231
/mpich2/branches/dev/lapi/src/mpi/romio/adio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/adio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/adio:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/adio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/adio:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/adio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/adio:5406
Property changes on: mpich2/trunk/src/mpi/romio/autogen.sh
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/autogen.sh:9231
/mpich2/branches/dev/lapi/src/mpi/romio/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/autogen.sh:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/autogen.sh:9231
/mpich2/branches/dev/lapi/src/mpi/romio/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/autogen.sh:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/autogen.sh:5406
Property changes on: mpich2/trunk/src/mpi/romio/common
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/common:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/common:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/common:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/common:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/common:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/common:9231
/mpich2/branches/dev/lapi/src/mpi/romio/common:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/common:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/common:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/common:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/common:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/common:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/common:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/common:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/common:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/common:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/common:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/common:9231
/mpich2/branches/dev/lapi/src/mpi/romio/common:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/common:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/common:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/common:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/common:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/common:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/common:5406
Property changes on: mpich2/trunk/src/mpi/romio/configure.ac
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/configure.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/configure.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/configure.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/configure.in:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/configure.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/configure.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/configure.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/configure.ac:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/configure.in:5406
Property changes on: mpich2/trunk/src/mpi/romio/doc
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/doc:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/doc:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/doc:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/doc:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/doc:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/doc:9231
/mpich2/branches/dev/lapi/src/mpi/romio/doc:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/doc:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/doc:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/doc:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/doc:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/doc:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/doc:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/doc:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/doc:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/doc:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/doc:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/doc:9231
/mpich2/branches/dev/lapi/src/mpi/romio/doc:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/doc:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/doc:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/doc:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/doc:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/doc:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/doc:5406
Property changes on: mpich2/trunk/src/mpi/romio/include
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/include:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/include:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/include:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/include:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/include:9231
/mpich2/branches/dev/lapi/src/mpi/romio/include:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/include:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/include:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/include:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/include:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/include:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/include:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/include:9231
/mpich2/branches/dev/lapi/src/mpi/romio/include:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/include:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/include:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/include:5406
Property changes on: mpich2/trunk/src/mpi/romio/localdefs.in
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/localdefs.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/localdefs.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/localdefs.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/localdefs.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/localdefs.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/localdefs.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/localdefs.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/localdefs.in:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/localdefs.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/localdefs.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/localdefs.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/localdefs.in:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/localdefs.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/localdefs.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/localdefs.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/localdefs.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/localdefs.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/localdefs.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/localdefs.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/localdefs.in:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/localdefs.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/localdefs.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/localdefs.in:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/localdefs.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/localdefs.in:5406
Property changes on: mpich2/trunk/src/mpi/romio/mpi-io
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/mpi-io:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi-io:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi-io:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi-io:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi-io:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi-io:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi-io:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi-io:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi-io:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi-io:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi-io:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi-io:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/mpi-io:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi-io:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi-io:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi-io:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi-io:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi-io:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi-io:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi-io:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi-io:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi-io:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi-io:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi-io:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi-io:5406
Property changes on: mpich2/trunk/src/mpi/romio/mpi2-other
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/mpi2-other:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi2-other:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi2-other:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi2-other:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi2-other:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi2-other:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi2-other:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi2-other:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi2-other:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi2-other:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi2-other:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi2-other:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/mpi2-other:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi2-other:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi2-other:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi2-other:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi2-other:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi2-other:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi2-other:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi2-other:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi2-other:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi2-other:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi2-other:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi2-other:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi2-other:5406
Property changes on: mpich2/trunk/src/mpi/romio/test
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/test:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/test:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/test:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test:5406
Property changes on: mpich2/trunk/src/mpi/romio/test-internal
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/test-internal:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test-internal:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test-internal:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test-internal:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test-internal:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test-internal:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test-internal:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test-internal:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test-internal:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test-internal:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test-internal:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test-internal:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/test-internal:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test-internal:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test-internal:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test-internal:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test-internal:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test-internal:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test-internal:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test-internal:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test-internal:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test-internal:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/test-internal:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test-internal:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test-internal:5406
Property changes on: mpich2/trunk/src/mpi/romio/util
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/util:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/util:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/util:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/util:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/util:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/util:9231
/mpich2/branches/dev/lapi/src/mpi/romio/util:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/util:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/util:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/util:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/util:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/util:5406
+ /mpich2/branches/dev/ckpt/src/mpi/romio/util:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/util:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/util:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/util:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/util:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/util:9231
/mpich2/branches/dev/lapi/src/mpi/romio/util:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/util:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/util:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/util:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpi/romio/util:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/util:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/util:5406
Property changes on: mpich2/trunk/src/mpid
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/mpid:7771-7802
/mpich2/branches/dev/error-return/src/mpid:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid:9231
/mpich2/branches/dev/nem-squash/src/mpid:9995-9998
/mpich2/branches/dev/reenableas/src/mpid:9355
+ /mpich2/branches/dev/coll-err-ret/src/mpid:7771-7802
/mpich2/branches/dev/error-return/src/mpid:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid:9231
/mpich2/branches/dev/nem-squash/src/mpid:9995-9998
/mpich2/branches/dev/reenableas/src/mpid:9355
/mpich2/branches/release/mpich-3.0/src/mpid:10777,10779
Property changes on: mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/portals4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9231
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9355
+ /mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9231
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9355
/mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/portals4:10777,10779
Property changes on: mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5050
/mpich2/branches/dev/ckpt2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7405-7603,7662-7670
/mpich2/branches/dev/ftb/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9231
/mpich2/branches/dev/lapi/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5817
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9355
/mpich2/branches/dev/win_rrvm/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:6416,6428
/mpich2/branches/dev/wintcp_async_progress/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5406
/mpich2/trunk/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:8275
+ /mpich2/branches/dev/ckpt/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5050
/mpich2/branches/dev/ckpt2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7405-7603,7662-7670
/mpich2/branches/dev/ftb/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9231
/mpich2/branches/dev/lapi/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5817
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9355
/mpich2/branches/dev/win_rrvm/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:6416,6428
/mpich2/branches/dev/wintcp_async_progress/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5406
/mpich2/trunk/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:8275
Property changes on: mpich2/trunk/src/mpl/src/mplstr.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/src/mpl/src/string/mplstr.c:5182,5196,5198
/mpich2/branches/dev/coll-err-ret/src/mpl/src/mplstr.c:7771-7802
/mpich2/branches/dev/error-return/src/mpl/src/mplstr.c:7662-7670
/mpich2/branches/dev/ftb/src/mpl/src/mplstr.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpl/src/mplstr.c:9231
/mpich2/branches/dev/lapi/src/mpl/src/mplstr.c:5817
/mpich2/branches/dev/nem-squash/src/mpl/src/mplstr.c:9995-9998
/mpich2/branches/dev/reenableas/src/mpl/src/mplstr.c:9355
/mpich2/branches/release/mpich2-1.1.1/src/mpl/src/string/mplstr.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpl/src/string/mplstr.c:5406
+ /mpich2/branches/dev/ckpt2/src/mpl/src/string/mplstr.c:5182,5196,5198
/mpich2/branches/dev/coll-err-ret/src/mpl/src/mplstr.c:7771-7802
/mpich2/branches/dev/error-return/src/mpl/src/mplstr.c:7662-7670
/mpich2/branches/dev/ftb/src/mpl/src/mplstr.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpl/src/mplstr.c:9231
/mpich2/branches/dev/lapi/src/mpl/src/mplstr.c:5817
/mpich2/branches/dev/nem-squash/src/mpl/src/mplstr.c:9995-9998
/mpich2/branches/dev/reenableas/src/mpl/src/mplstr.c:9355
/mpich2/branches/release/mpich-3.0/src/mpl/src/mplstr.c:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/mpl/src/string/mplstr.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpl/src/string/mplstr.c:5406
Property changes on: mpich2/trunk/src/pm/hydra
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra:7771-7802*
/mpich2/branches/dev/error-return/src/pm/hydra:7662-7670*
/mpich2/branches/dev/ftb/src/pm/hydra:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra:9231*
/mpich2/branches/dev/lapi/src/pm/hydra:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra:9355*
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra:7771-7802*
/mpich2/branches/dev/error-return/src/pm/hydra:7662-7670*
/mpich2/branches/dev/ftb/src/pm/hydra:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra:9231*
/mpich2/branches/dev/lapi/src/pm/hydra:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra:9355*
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra:5406
Property changes on: mpich2/trunk/src/pm/hydra/Makefile.am
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/Makefile.am:9231
/mpich2/branches/dev/lapi/src/pm/hydra/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/Makefile.am:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/Makefile.am:9231
/mpich2/branches/dev/lapi/src/pm/hydra/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/Makefile.am:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/Makefile.am:5406
Property changes on: mpich2/trunk/src/pm/hydra/README
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/README:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/README:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/README:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/README:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/README:9231
/mpich2/branches/dev/lapi/src/pm/hydra/README:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/README:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/README:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/README:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/README:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/README:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/README:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/README:9231
/mpich2/branches/dev/lapi/src/pm/hydra/README:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/README:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/README:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/README:5406
Property changes on: mpich2/trunk/src/pm/hydra/autogen.sh
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/autogen.sh:9231
/mpich2/branches/dev/lapi/src/pm/hydra/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/autogen.sh:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/autogen.sh:9231
/mpich2/branches/dev/lapi/src/pm/hydra/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/autogen.sh:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/autogen.sh:5406
Property changes on: mpich2/trunk/src/pm/hydra/configure.ac
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/configure.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/configure.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/configure.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/configure.in:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/configure.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/configure.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/configure.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/configure.ac:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/configure.in:5406
Property changes on: mpich2/trunk/src/pm/hydra/examples
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/examples:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/examples:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/examples:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/examples:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/examples:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/examples:9231
/mpich2/branches/dev/lapi/src/pm/hydra/examples:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/examples:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/examples:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/examples:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/examples:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/examples:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/examples:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/examples:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/examples:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/examples:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/examples:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/examples:9231
/mpich2/branches/dev/lapi/src/pm/hydra/examples:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/examples:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/examples:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/examples:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/examples:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/examples:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/examples:5406
Property changes on: mpich2/trunk/src/pm/hydra/hydra-doxygen.cfg.in
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/hydra-doxygen.cfg.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/hydra-doxygen.cfg.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/hydra-doxygen.cfg.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/hydra-doxygen.cfg.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/hydra-doxygen.cfg.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/hydra-doxygen.cfg.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/hydra-doxygen.cfg.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/hydra-doxygen.cfg.in:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/hydra-doxygen.cfg.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/hydra-doxygen.cfg.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/hydra-doxygen.cfg.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/hydra-doxygen.cfg.in:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/hydra-doxygen.cfg.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/hydra-doxygen.cfg.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/hydra-doxygen.cfg.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/hydra-doxygen.cfg.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/hydra-doxygen.cfg.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/hydra-doxygen.cfg.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/hydra-doxygen.cfg.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/hydra-doxygen.cfg.in:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/hydra-doxygen.cfg.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/hydra-doxygen.cfg.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/hydra-doxygen.cfg.in:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/hydra-doxygen.cfg.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/hydra-doxygen.cfg.in:5406
Property changes on: mpich2/trunk/src/pm/hydra/include
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/include:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/include:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/include:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/include:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/include:9231
/mpich2/branches/dev/lapi/src/pm/hydra/include:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/include:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/include:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/include:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/include:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/include:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/include:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/include:9231
/mpich2/branches/dev/lapi/src/pm/hydra/include:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/include:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/include:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/include:5406
Property changes on: mpich2/trunk/src/pm/hydra/mpichprereq
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/mpich2prereq:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/mpich2prereq:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/mpich2prereq:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/mpich2prereq:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/mpich2prereq:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/mpich2prereq:9231
/mpich2/branches/dev/lapi/src/pm/hydra/mpich2prereq:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/mpich2prereq:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/mpich2prereq:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/mpich2prereq:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/mpich2prereq:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/mpich2prereq:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/mpich2prereq:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/mpich2prereq:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/mpich2prereq:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/mpich2prereq:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/mpich2prereq:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/mpich2prereq:9231
/mpich2/branches/dev/lapi/src/pm/hydra/mpich2prereq:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/mpich2prereq:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/mpich2prereq:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/mpich2prereq:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/mpichprereq:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/mpich2prereq:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/mpich2prereq:5406
Property changes on: mpich2/trunk/src/pm/hydra/pm
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/pm:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/pm:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/pm:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/pm:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/pm:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/pm:9231
/mpich2/branches/dev/lapi/src/pm/hydra/pm:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/pm:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/pm:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/pm:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/pm:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/pm:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/pm:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/pm:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/pm:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/pm:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/pm:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/pm:9231
/mpich2/branches/dev/lapi/src/pm/hydra/pm:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/pm:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/pm:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/pm:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/pm:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/pm:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/pm:5406
Property changes on: mpich2/trunk/src/pm/hydra/tools
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/tools:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/tools:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/tools:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/tools:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/tools:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/tools:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/tools:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/tools:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/tools:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/tools:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/tools:5406
Property changes on: mpich2/trunk/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9355
+ /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9355
/mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:10777,10779
Property changes on: mpich2/trunk/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9355
+ /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9355
/mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:10777,10779
Property changes on: mpich2/trunk/src/pm/hydra/ui
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/ui:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/ui:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/ui:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/ui:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/ui:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/ui:9231
/mpich2/branches/dev/lapi/src/pm/hydra/ui:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/ui:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/ui:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/ui:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/ui:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/ui:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/ui:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/ui:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/ui:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/ui:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/ui:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/ui:9231
/mpich2/branches/dev/lapi/src/pm/hydra/ui:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/ui:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/ui:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/ui:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/ui:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/ui:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/ui:5406
Property changes on: mpich2/trunk/src/pm/hydra/utils
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/utils:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/utils:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/utils:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/utils:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/utils:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/utils:9231
/mpich2/branches/dev/lapi/src/pm/hydra/utils:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/utils:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/utils:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/utils:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/utils:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/utils:5406
+ /mpich2/branches/dev/ckpt/src/pm/hydra/utils:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/utils:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/utils:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/utils:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/utils:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/utils:9231
/mpich2/branches/dev/lapi/src/pm/hydra/utils:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/utils:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/utils:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/utils:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/src/pm/hydra/utils:10777,10779
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/utils:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/utils:5406
Property changes on: mpich2/trunk/winconfigure.wsf
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/winconfigure.wsf:5050
/mpich2/branches/dev/ckpt2/winconfigure.wsf:5057-6537
/mpich2/branches/dev/coll-err-ret/winconfigure.wsf:7771-7802
/mpich2/branches/dev/error-return/winconfigure.wsf:7662-7670
/mpich2/branches/dev/ftb/winconfigure.wsf:5661-5730
/mpich2/branches/dev/groupfailed/winconfigure.wsf:9231
/mpich2/branches/dev/lapi/winconfigure.wsf:5817
/mpich2/branches/dev/nem-squash/winconfigure.wsf:9995-9998
/mpich2/branches/dev/reenableas/winconfigure.wsf:9355
/mpich2/branches/dev/win_rrvm/winconfigure.wsf:6404,6407-6408,6420,6422-6423
/mpich2/branches/dev/wintcp_async_progress/winconfigure.wsf:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/winconfigure.wsf:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/winconfigure.wsf:5406
+ /mpich2/branches/dev/ckpt/winconfigure.wsf:5050
/mpich2/branches/dev/ckpt2/winconfigure.wsf:5057-6537
/mpich2/branches/dev/coll-err-ret/winconfigure.wsf:7771-7802
/mpich2/branches/dev/error-return/winconfigure.wsf:7662-7670
/mpich2/branches/dev/ftb/winconfigure.wsf:5661-5730
/mpich2/branches/dev/groupfailed/winconfigure.wsf:9231
/mpich2/branches/dev/lapi/winconfigure.wsf:5817
/mpich2/branches/dev/nem-squash/winconfigure.wsf:9995-9998
/mpich2/branches/dev/reenableas/winconfigure.wsf:9355
/mpich2/branches/dev/win_rrvm/winconfigure.wsf:6404,6407-6408,6420,6422-6423
/mpich2/branches/dev/wintcp_async_progress/winconfigure.wsf:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich-3.0/winconfigure.wsf:10777,10779
/mpich2/branches/release/mpich2-1.1.1/winconfigure.wsf:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/winconfigure.wsf:5406
1
0
Author: goodell
Date: 2012-12-19 23:05:48 -0600 (Wed, 19 Dec 2012)
New Revision: 10790
Added:
mpich2/tags/release/mpich-3.0/
Log:
retag the mpich-3.0 release to pick up fixed docs
Property changes on: mpich2/tags/release/mpich-3.0
___________________________________________________________________
Added: svn:ignore
+ subsys_include.m4
configure
configure.lineno
config.log
config.status
config.cache
cache.base
*conf.cache
config.system
config.h.in
.mpich2
autom4te.cache
libtool
Makefile.in
Makefile
mpich2-doxygen
lib
*ebug*
*elease*
*.log
mpich2.ncb
mpich2.opt
mpich2.plg
mpich2.suo
coverage*
mpich*pgrs.html
bin
.err
.deps
unusederr.txt
www
cscope.out
cscope.files
*.user
winbuild
man
TAGS
TAGS.bak
README
README.envvar
include
share
aclocal.m4
config.lt
conf.mod
install
Added: svn:mergeinfo
+ /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
/mpich2/trunk:10784,10786-10787
1
0
Author: goodell
Date: 2012-12-19 23:05:33 -0600 (Wed, 19 Dec 2012)
New Revision: 10789
Removed:
mpich2/tags/release/mpich-3.0/
Log:
delete the 3.0 tag due to incorrect references to MPI-2.2
1
0
Author: balaji
Date: 2012-12-19 23:02:40 -0600 (Wed, 19 Dec 2012)
New Revision: 10788
Modified:
mpich2/branches/release/mpich-3.0/
mpich2/branches/release/mpich-3.0/README.vin
mpich2/branches/release/mpich-3.0/RELEASE_NOTES
mpich2/branches/release/mpich-3.0/confdb/
mpich2/branches/release/mpich-3.0/confdb/aclocal_util.m4
mpich2/branches/release/mpich-3.0/doc/installguide/install.tex.vin
mpich2/branches/release/mpich-3.0/doc/namepub/namepub.tex
mpich2/branches/release/mpich-3.0/doc/refman/mpiman.tex
mpich2/branches/release/mpich-3.0/doc/userguide/user.tex.vin
mpich2/branches/release/mpich-3.0/doc/windev/windev.tex.vin
mpich2/branches/release/mpich-3.0/maint/docnotes
mpich2/branches/release/mpich-3.0/maint/version.m4
mpich2/branches/release/mpich-3.0/src/mpi/romio/
mpich2/branches/release/mpich-3.0/src/mpi/romio/.codingcheck
mpich2/branches/release/mpich-3.0/src/mpi/romio/.config_params
mpich2/branches/release/mpich-3.0/src/mpi/romio/COPYRIGHT
mpich2/branches/release/mpich-3.0/src/mpi/romio/Makefile.am
mpich2/branches/release/mpich-3.0/src/mpi/romio/README
mpich2/branches/release/mpich-3.0/src/mpi/romio/adio/
mpich2/branches/release/mpich-3.0/src/mpi/romio/autogen.sh
mpich2/branches/release/mpich-3.0/src/mpi/romio/common/
mpich2/branches/release/mpich-3.0/src/mpi/romio/configure.ac
mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/
mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/source-guide.tex
mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/users-guide.tex
mpich2/branches/release/mpich-3.0/src/mpi/romio/include/
mpich2/branches/release/mpich-3.0/src/mpi/romio/localdefs.in
mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi-io/
mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi2-other/
mpich2/branches/release/mpich-3.0/src/mpi/romio/test-internal/
mpich2/branches/release/mpich-3.0/src/mpi/romio/test/
mpich2/branches/release/mpich-3.0/src/mpi/romio/util/
mpich2/branches/release/mpich-3.0/src/mpid/
mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/portals4/
mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c
mpich2/branches/release/mpich-3.0/src/mpl/src/mplstr.c
mpich2/branches/release/mpich-3.0/src/pm/hydra/
mpich2/branches/release/mpich-3.0/src/pm/hydra/Makefile.am
mpich2/branches/release/mpich-3.0/src/pm/hydra/README
mpich2/branches/release/mpich-3.0/src/pm/hydra/autogen.sh
mpich2/branches/release/mpich-3.0/src/pm/hydra/configure.ac
mpich2/branches/release/mpich-3.0/src/pm/hydra/examples/
mpich2/branches/release/mpich-3.0/src/pm/hydra/hydra-doxygen.cfg.in
mpich2/branches/release/mpich-3.0/src/pm/hydra/include/
mpich2/branches/release/mpich-3.0/src/pm/hydra/mpichprereq
mpich2/branches/release/mpich-3.0/src/pm/hydra/pm/
mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/
mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c
mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c
mpich2/branches/release/mpich-3.0/src/pm/hydra/ui/
mpich2/branches/release/mpich-3.0/src/pm/hydra/utils/
mpich2/branches/release/mpich-3.0/winconfigure.wsf
Log:
Merged r10786 and r10787 from trunk.
Property changes on: mpich2/branches/release/mpich-3.0
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
/mpich2/trunk:10784
+ /mpich2/branches/dev/ckpt:5050
/mpich2/branches/dev/ckpt2:5057-6537
/mpich2/branches/dev/coll-err-ret:7771-7802
/mpich2/branches/dev/error-return:7662-7670
/mpich2/branches/dev/ftb:5661-5730
/mpich2/branches/dev/groupfailed:9231
/mpich2/branches/dev/lapi:5817
/mpich2/branches/dev/nem-squash:9995-9998
/mpich2/branches/dev/reenableas:9355
/mpich2/branches/dev/wintcp_async_progress:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2:5406
/mpich2/trunk:10784,10786-10787
Modified: mpich2/branches/release/mpich-3.0/README.vin
===================================================================
--- mpich2/branches/release/mpich-3.0/README.vin 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/README.vin 2012-12-20 05:02:40 UTC (rev 10788)
@@ -185,10 +185,10 @@
process managers; the default is called Hydra.
Now we will run an MPI job, using the mpiexec command as specified
- in the MPI-2 standard. There are some examples in the install
+ in the MPI standard. There are some examples in the install
directory, which you have already put in your path, as well as in
- the directory mpich-%VERSION%/examples. One of them is the
- classic CPI example, which computes the value of pi by numerical
+ the directory mpich-%VERSION%/examples. One of them is the classic
+ CPI example, which computes the value of pi by numerical
integration in parallel.
To run the CPI example with 'n' processes on your local machine,
Modified: mpich2/branches/release/mpich-3.0/RELEASE_NOTES
===================================================================
--- mpich2/branches/release/mpich-3.0/RELEASE_NOTES 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/RELEASE_NOTES 2012-12-20 05:02:40 UTC (rev 10788)
@@ -93,8 +93,5 @@
* The MPI datatypes corresponding to Fortran datatypes are not
available (e.g., no MPI::DOUBLE_PRECISION).
- * The C++ binding does not implement a separate profiling interface,
- as allowed by the MPI-2 Standard (Section 10.1.10 Profiling).
-
* MPI::ERRORS_RETURN may still throw exceptions in the event of an
error rather than silently returning.
Property changes on: mpich2/branches/release/mpich-3.0/confdb
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/confdb:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb:7771-7802
/mpich2/branches/dev/error-return/confdb:7662-7670
/mpich2/branches/dev/ftb/confdb:5661-5730
/mpich2/branches/dev/groupfailed/confdb:9231
/mpich2/branches/dev/lapi/confdb:5817
/mpich2/branches/dev/nem-squash/confdb:9995-9998
/mpich2/branches/dev/reenableas/confdb:9355
/mpich2/branches/dev/wintcp_async_progress/confdb:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb:5406
/mpich2/trunk/confdb:10784
+ /mpich2/branches/dev/ckpt2/confdb:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb:7771-7802
/mpich2/branches/dev/error-return/confdb:7662-7670
/mpich2/branches/dev/ftb/confdb:5661-5730
/mpich2/branches/dev/groupfailed/confdb:9231
/mpich2/branches/dev/lapi/confdb:5817
/mpich2/branches/dev/nem-squash/confdb:9995-9998
/mpich2/branches/dev/reenableas/confdb:9355
/mpich2/branches/dev/wintcp_async_progress/confdb:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb:5406
/mpich2/trunk/confdb:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/confdb/aclocal_util.m4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/confdb/aclocal_util.m4:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb/aclocal_util.m4:7771-7802
/mpich2/branches/dev/error-return/confdb/aclocal_util.m4:7662-7670
/mpich2/branches/dev/ftb/confdb/aclocal_util.m4:5661-5730
/mpich2/branches/dev/groupfailed/confdb/aclocal_util.m4:9231
/mpich2/branches/dev/lapi/confdb/aclocal_util.m4:5817
/mpich2/branches/dev/nem-squash/confdb/aclocal_util.m4:9995-9998
/mpich2/branches/dev/reenableas/src/mpe2/src/slog2sdk/aclocal_util.m4:9355
/mpich2/branches/dev/wintcp_async_progress/confdb/aclocal_util.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb/aclocal_util.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb/aclocal_util.m4:5406
/mpich2/trunk/confdb/aclocal_util.m4:10784
+ /mpich2/branches/dev/ckpt2/confdb/aclocal_util.m4:5180,5182,5196,5198
/mpich2/branches/dev/coll-err-ret/confdb/aclocal_util.m4:7771-7802
/mpich2/branches/dev/error-return/confdb/aclocal_util.m4:7662-7670
/mpich2/branches/dev/ftb/confdb/aclocal_util.m4:5661-5730
/mpich2/branches/dev/groupfailed/confdb/aclocal_util.m4:9231
/mpich2/branches/dev/lapi/confdb/aclocal_util.m4:5817
/mpich2/branches/dev/nem-squash/confdb/aclocal_util.m4:9995-9998
/mpich2/branches/dev/reenableas/src/mpe2/src/slog2sdk/aclocal_util.m4:9355
/mpich2/branches/dev/wintcp_async_progress/confdb/aclocal_util.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/confdb/aclocal_util.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/confdb/aclocal_util.m4:5406
/mpich2/trunk/confdb/aclocal_util.m4:10784,10786-10787
Modified: mpich2/branches/release/mpich-3.0/doc/installguide/install.tex.vin
===================================================================
--- mpich2/branches/release/mpich-3.0/doc/installguide/install.tex.vin 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/doc/installguide/install.tex.vin 2012-12-20 05:02:40 UTC (rev 10788)
@@ -101,7 +101,7 @@
\section{Introduction}
\label{sec:intro}
-This manual describes how to obtain and install MPICH, the MPI-2
+This manual describes how to obtain and install MPICH, the MPI
implementation from Argonne National Laboratory. (Of course, if you are
reading this, chances are good that you have already obtained it and
found this document, among others, in its \texttt{doc} subdirectory.)
@@ -324,7 +324,7 @@
\item
Now we will run an MPI job, using the \texttt{mpiexec} command as specified
-in the MPI-2 standard.
+in the MPI standard.
As part of the build process for MPICH, a simple program to compute the value
of $\pi$ by numerical integration is created in the
Modified: mpich2/branches/release/mpich-3.0/doc/namepub/namepub.tex
===================================================================
--- mpich2/branches/release/mpich-3.0/doc/namepub/namepub.tex 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/doc/namepub/namepub.tex 2012-12-20 05:02:40 UTC (rev 10788)
@@ -11,7 +11,7 @@
\section{Introduction}
-MPI-2 defines a set of routines for exchanging data with other MPI
+MPI defines a set of routines for exchanging data with other MPI
programs. The intent of these is to allow MPI applications to
exchange the data that is needed for the \code{port} argument in the
\code{MPI_Comm_connect} and \code{MPI_Comm_accept} calls.
@@ -84,7 +84,7 @@
handle so that the handle can be set to null when the free routine
succeeds. Each of these routines returns either \code{MPI_SUCCESS} or
a valid MPI error code; implementations may either use the MPICH
-error code mechanism or, for external packages, use the MPI-2 routines
+error code mechanism or, for external packages, use the MPI routines
for adding error codes and classes.
\begin{verbatim}
@@ -212,4 +212,4 @@
by this interface. The info key \code{NAMEPUB_CONTACT} can be used to
specify the directory into which the files will be placed.
-\end{document}
\ No newline at end of file
+\end{document}
Modified: mpich2/branches/release/mpich-3.0/doc/refman/mpiman.tex
===================================================================
--- mpich2/branches/release/mpich-3.0/doc/refman/mpiman.tex 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/doc/refman/mpiman.tex 2012-12-20 05:02:40 UTC (rev 10788)
@@ -61,7 +61,7 @@
\section{MPI routines}
This section contains descriptions of each of the routines in the MPI
-standard, including both MPI-1 and MPI-2.
+standard.
In the description of the routine parameters, the following terms are
used:
Modified: mpich2/branches/release/mpich-3.0/doc/userguide/user.tex.vin
===================================================================
--- mpich2/branches/release/mpich-3.0/doc/userguide/user.tex.vin 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/doc/userguide/user.tex.vin 2012-12-20 05:02:40 UTC (rev 10788)
@@ -92,12 +92,12 @@
\label{sec:migrating}
MPICH is a high-performance and widely portable implementation of the
-MPI Standard, designed to implement all of MPI-1 and MPI-2 (including
-dynamic process management, one-sided operations, parallel I/O, and
-other extensions). The \emph{MPICH Installer's Guide} provides some
-information on MPICH with respect to configuring and installing
-it. Details on compiling, linking, and running MPI programs are
-described below.
+MPI Standard, designed to implement all of MPI-1, MPI-2, and MPI-3
+(including dynamic process management, one-sided operations, parallel
+I/O, and other extensions). The \emph{MPICH Installer's Guide}
+provides some information on MPICH with respect to configuring and
+installing it. Details on compiling, linking, and running MPI programs
+are described below.
\subsection{Default Runtime Environment}
@@ -210,7 +210,7 @@
\end{small}
The problem is that both \texttt{stdio.h} and the MPI C++ interface use
\texttt{SEEK\_SET}, \texttt{SEEK\_CUR}, and \texttt{SEEK\_END}. This is really a bug
-in the MPI-2 standard. You can try adding
+in the MPI standard. You can try adding
\begin{verbatim}
#undef SEEK_SET
#undef SEEK_END
@@ -240,16 +240,16 @@
\section{Running Programs with \texttt{mpiexec}}
\label{sec:mpiexec}
-The MPI-2 Standard describes \texttt{mpiexec} as a suggested way to
-run MPI programs. MPICH implements the \texttt{mpiexec} standard, and
-also provides some extensions.
+The MPI Standard describes \texttt{mpiexec} as a suggested way to run
+MPI programs. MPICH implements the \texttt{mpiexec} standard, and also
+provides some extensions.
\subsection{Standard \texttt{mpiexec}}
\label{sec:mpiexec-standard}
-Here we describe the standard \texttt{mpiexec} arguments from the MPI-2
-Standard~\cite{mpi-forum:mpi2-journal}. The simplest form of a command
-to start an MPI job is
+Here we describe the standard \texttt{mpiexec} arguments from the MPI
+Standard~\cite{mpi-forum:mpi2-journal}. The simplest form of a
+command to start an MPI job is
\begin{verbatim}
mpiexec -f machinefile -n 32 a.out
@@ -272,7 +272,7 @@
\texttt{mpiexec}. This process will become an MPI process when it
calls \texttt{MPI\_Init}, and it may then call other MPI functions.
Currently, MPICH does not fully support calling the dynamic process
-routines from MPI-2 (e.g., \texttt{MPI\_Comm\_spawn} or
+routines from the MPI standard (e.g., \texttt{MPI\_Comm\_spawn} or
\texttt{MPI\_Comm\_accept}) from processes that are not started with
\texttt{mpiexec}.
@@ -306,7 +306,7 @@
\subsubsection{\texttt{mpiexec} arguments for SMPD}
\label{sec:mpiexec-smpd}
-\texttt{mpiexec} for smpd accepts the standard MPI-2 \texttt{mpiexec}
+\texttt{mpiexec} for smpd accepts the standard MPI \texttt{mpiexec}
options. Execute
\begin{verbatim}
mpiexec
@@ -676,10 +676,10 @@
\section{Other Tools Provided with MPICH}
\label{sec:other-tools}
-MPICH also includes a test suite for MPI-1 and MPI-2 functionality; this
-suite may be found in the \texttt{mpich/test/mpi} source directory and can be
-run with the command \texttt{make testing}. This test suite should work with
-any MPI implementation, not just MPICH.
+MPICH also includes a test suite for MPI functionality; this suite may
+be found in the \texttt{mpich/test/mpi} source directory and can be
+run with the command \texttt{make testing}. This test suite should
+work with any MPI implementation, not just MPICH.
\section{MPICH2 under Windows}
\label{sec:windows}
Modified: mpich2/branches/release/mpich-3.0/doc/windev/windev.tex.vin
===================================================================
--- mpich2/branches/release/mpich-3.0/doc/windev/windev.tex.vin 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/doc/windev/windev.tex.vin 2012-12-20 05:02:40 UTC (rev 10788)
@@ -694,7 +694,7 @@
specified there need not be any smpd process manager running on any of the nodes
used in the job. \texttt{mpiexec} provides the PMI interface and the remote
shell command is used to start the processes. Using these flags allows jobs to
-be started without any process managers running but the MPI-2 dynamic process
+be started without any process managers running but the MPI dynamic process
functions like MPI\_Comm\_spawn are consequently not available.
\item \texttt{-noprompt}
@@ -974,7 +974,7 @@
to set the variable to the hostname where the root process will be started instead
of the local host name.
-The limitation of this method of starting processes is that MPI-2 spawning operations
+The limitation of this method of starting processes is that MPI spawning operations
are not supported. If your application calls MPI\_Comm\_spawn it will produce
an error.
Modified: mpich2/branches/release/mpich-3.0/maint/docnotes
===================================================================
--- mpich2/branches/release/mpich-3.0/maint/docnotes 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/maint/docnotes 2012-12-20 05:02:40 UTC (rev 10788)
@@ -109,7 +109,7 @@
The sizes of MPI strings in Fortran are one less than the sizes of that
string in C/C++ because the C/C++ versions provide room for the trailing
null character required by C/C++. For example, 'MPI_MAX_ERROR_STRING' is
- 'mpif.h' is one smaller than the same value in 'mpi.h'. See the MPI-2
+ 'mpif.h' is one smaller than the same value in 'mpi.h'. See the MPI
standard, sections 2.6.2 and 4.12.9.
N*/
Property changes on: mpich2/branches/release/mpich-3.0/maint/version.m4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/maint/version.m4:5050
/mpich2/branches/dev/ckpt2/maint/version.m4:5057-6537
/mpich2/branches/dev/coll-err-ret/maint/version.m4:7771-7802
/mpich2/branches/dev/error-return/maint/version.m4:7662-7670
/mpich2/branches/dev/ftb/maint/version.m4:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/version.m4:9231
/mpich2/branches/dev/lapi/maint/version.m4:5817
/mpich2/branches/dev/nem-squash/maint/version.m4:9995-9998
/mpich2/branches/dev/reenableas/maint/version.m4:9355
/mpich2/branches/dev/wintcp_async_progress/maint/version.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/maint/version.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/maint/version.m4:5406
/mpich2/trunk/maint/version.m4:10784
+ /mpich2/branches/dev/ckpt/maint/version.m4:5050
/mpich2/branches/dev/ckpt2/maint/version.m4:5057-6537
/mpich2/branches/dev/coll-err-ret/maint/version.m4:7771-7802
/mpich2/branches/dev/error-return/maint/version.m4:7662-7670
/mpich2/branches/dev/ftb/maint/version.m4:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/version.m4:9231
/mpich2/branches/dev/lapi/maint/version.m4:5817
/mpich2/branches/dev/nem-squash/maint/version.m4:9995-9998
/mpich2/branches/dev/reenableas/maint/version.m4:9355
/mpich2/branches/dev/wintcp_async_progress/maint/version.m4:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/maint/version.m4:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/maint/version.m4:5406
/mpich2/trunk/maint/version.m4:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio:9231*
/mpich2/branches/dev/lapi/src/mpi/romio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio:9355*
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio:5406
/mpich2/trunk/src/mpi/romio:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio:9231*
/mpich2/branches/dev/lapi/src/mpi/romio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio:9355*
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio:5406
/mpich2/trunk/src/mpi/romio:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/.codingcheck
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/.codingcheck:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.codingcheck:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.codingcheck:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.codingcheck:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.codingcheck:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.codingcheck:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.codingcheck:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.codingcheck:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.codingcheck:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.codingcheck:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.codingcheck:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.codingcheck:5406
/mpich2/trunk/src/mpi/romio/.codingcheck:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/.codingcheck:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.codingcheck:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.codingcheck:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.codingcheck:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.codingcheck:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.codingcheck:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.codingcheck:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.codingcheck:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.codingcheck:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.codingcheck:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.codingcheck:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.codingcheck:5406
/mpich2/trunk/src/mpi/romio/.codingcheck:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/.config_params
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/.config_params:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.config_params:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.config_params:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.config_params:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.config_params:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.config_params:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.config_params:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.config_params:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.config_params:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.config_params:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.config_params:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.config_params:5406
/mpich2/trunk/src/mpi/romio/.config_params:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/.config_params:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/.config_params:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/.config_params:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/.config_params:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/.config_params:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/.config_params:9231
/mpich2/branches/dev/lapi/src/mpi/romio/.config_params:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/.config_params:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/.config_params:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/.config_params:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/.config_params:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/.config_params:5406
/mpich2/trunk/src/mpi/romio/.config_params:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/COPYRIGHT
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/COPYRIGHT:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/COPYRIGHT:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/COPYRIGHT:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/COPYRIGHT:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/COPYRIGHT:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/COPYRIGHT:9231
/mpich2/branches/dev/lapi/src/mpi/romio/COPYRIGHT:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/COPYRIGHT:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/COPYRIGHT:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/COPYRIGHT:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/COPYRIGHT:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/COPYRIGHT:5406
/mpich2/trunk/src/mpi/romio/COPYRIGHT:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/COPYRIGHT:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/COPYRIGHT:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/COPYRIGHT:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/COPYRIGHT:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/COPYRIGHT:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/COPYRIGHT:9231
/mpich2/branches/dev/lapi/src/mpi/romio/COPYRIGHT:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/COPYRIGHT:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/COPYRIGHT:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/COPYRIGHT:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/COPYRIGHT:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/COPYRIGHT:5406
/mpich2/trunk/src/mpi/romio/COPYRIGHT:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/Makefile.am
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/Makefile.am:9231
/mpich2/branches/dev/lapi/src/mpi/romio/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/Makefile.am:5406
/mpich2/trunk/src/mpi/romio/Makefile.am:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/Makefile.am:9231
/mpich2/branches/dev/lapi/src/mpi/romio/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/Makefile.am:5406
/mpich2/trunk/src/mpi/romio/Makefile.am:10784,10786-10787
Modified: mpich2/branches/release/mpich-3.0/src/mpi/romio/README
===================================================================
--- mpich2/branches/release/mpich-3.0/src/mpi/romio/README 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/src/mpi/romio/README 2012-12-20 05:02:40 UTC (rev 10788)
@@ -161,9 +161,9 @@
Major Changes Version 1.0.2:
---------------------------
-* Implemented the shared file pointer functions (Section 9.4.4 of MPI-2) and
- split collective I/O functions (Section 9.4.5). Therefore, the main
- components of the MPI-2 I/O chapter not yet implemented are
+* Implemented the shared file pointer functions and
+ split collective I/O functions. Therefore, the main
+ components of the MPI I/O chapter not yet implemented are
file interoperability and error handling.
* Added support for using "direct I/O" on SGI's XFS file system.
@@ -298,13 +298,13 @@
-------------------
ROMIO is a high-performance, portable implementation of MPI-IO (the
-I/O chapter in MPI-2). ROMIO's home page is at
-http://www.mcs.anl.gov/romio . The MPI-2 standard is available at
+I/O chapter in MPI). ROMIO's home page is at
+http://www.mcs.anl.gov/romio . The MPI standard is available at
http://www.mpi-forum.org/docs/docs.html .
-This version of ROMIO includes everything defined in the MPI-2 I/O
-chapter except support for file interoperability (Sec. 9.5 of MPI-2) and
-user-defined error handlers for files (Sec. 4.13.3). The subarray and
+This version of ROMIO includes everything defined in the MPI I/O
+chapter except support for file interoperability and
+user-defined error handlers for files. The subarray and
distributed array datatype constructor functions from Chapter 4
(Sec. 4.14.4 & 4.14.5) have been implemented. They are useful for
accessing arrays stored in files. The functions MPI_File_f2c and
@@ -587,7 +587,7 @@
* If a Fortran program uses a file handle created using ROMIO's C
interface, or vice-versa, you must use the functions MPI_File_c2f
-or MPI_File_f2c (see MPI-2 Section 4.12.4). Such a situation occurs,
+or MPI_File_f2c. Such a situation occurs,
for example, if a Fortran program uses an I/O library written in C
with MPI-IO calls. Similar functions MPIO_Request_f2c and
MPIO_Request_c2f are also provided.
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/README
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/README:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/README:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/README:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/README:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/README:9231
/mpich2/branches/dev/lapi/src/mpi/romio/README:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/README:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/README:5406
/mpich2/trunk/src/mpi/romio/README:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/README:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/README:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/README:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/README:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/README:9231
/mpich2/branches/dev/lapi/src/mpi/romio/README:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/README:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/README:5406
/mpich2/trunk/src/mpi/romio/README:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/adio
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/adio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/adio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/adio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/adio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/adio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/adio:9231
/mpich2/branches/dev/lapi/src/mpi/romio/adio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/adio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/adio:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/adio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/adio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/adio:5406
/mpich2/trunk/src/mpi/romio/adio:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/adio:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/adio:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/adio:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/adio:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/adio:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/adio:9231
/mpich2/branches/dev/lapi/src/mpi/romio/adio:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/adio:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/adio:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/adio:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/adio:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/adio:5406
/mpich2/trunk/src/mpi/romio/adio:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/autogen.sh
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/autogen.sh:9231
/mpich2/branches/dev/lapi/src/mpi/romio/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/autogen.sh:5406
/mpich2/trunk/src/mpi/romio/autogen.sh:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/autogen.sh:9231
/mpich2/branches/dev/lapi/src/mpi/romio/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/autogen.sh:5406
/mpich2/trunk/src/mpi/romio/autogen.sh:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/common
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/common:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/common:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/common:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/common:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/common:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/common:9231
/mpich2/branches/dev/lapi/src/mpi/romio/common:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/common:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/common:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/common:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/common:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/common:5406
/mpich2/trunk/src/mpi/romio/common:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/common:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/common:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/common:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/common:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/common:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/common:9231
/mpich2/branches/dev/lapi/src/mpi/romio/common:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/common:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/common:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/common:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/common:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/common:5406
/mpich2/trunk/src/mpi/romio/common:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/configure.ac
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/configure.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/configure.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/configure.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/configure.in:5406
/mpich2/trunk/src/mpi/romio/configure.ac:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/configure.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/configure.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/configure.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/configure.in:5406
/mpich2/trunk/src/mpi/romio/configure.ac:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/doc
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/doc:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/doc:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/doc:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/doc:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/doc:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/doc:9231
/mpich2/branches/dev/lapi/src/mpi/romio/doc:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/doc:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/doc:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/doc:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/doc:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/doc:5406
/mpich2/trunk/src/mpi/romio/doc:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/doc:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/doc:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/doc:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/doc:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/doc:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/doc:9231
/mpich2/branches/dev/lapi/src/mpi/romio/doc:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/doc:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/doc:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/doc:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/doc:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/doc:5406
/mpich2/trunk/src/mpi/romio/doc:10784,10786-10787
Modified: mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/source-guide.tex
===================================================================
--- mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/source-guide.tex 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/source-guide.tex 2012-12-20 05:02:40 UTC (rev 10788)
@@ -95,7 +95,7 @@
\begin{abstract}
\noindent
ROMIO is a high-performance, portable implementation of MPI-IO (the
-I/O chapter in \mbox{MPI-2}).
+I/O chapter in the \mbox{MPI Standard}).
This document describes the internals of the ROMIO implementation.
\end{abstract}
@@ -121,7 +121,7 @@
The ROMIO directory structure consists of two main branches, the MPI-IO branch
(mpi-io) and the ADIO branch (adio). The MPI-IO branch contains code that
-implements the functions defined in the MPI-2 specification for I/O, such as
+implements the functions defined in the MPI specification for I/O, such as
MPI\_File\_open. These functions are then written in terms of other functions
that provide an abstract interface to I/O resources, the ADIO functions.
There is an additional glue subdirectory in the MPI-IO branch that defines
@@ -369,7 +369,7 @@
value in a separate file...
Note that the ROMIO team has devised a portable method for implementing shared
-file pointers using only MPI-1 and MPI-2 functions. However, this method has
+file pointers using only MPI functions. However, this method has
not yet been implemented in ROMIO.
file name is selected at end of mpi-io/open.c.
Modified: mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/users-guide.tex
===================================================================
--- mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/users-guide.tex 2012-12-20 05:02:00 UTC (rev 10787)
+++ mpich2/branches/release/mpich-3.0/src/mpi/romio/doc/users-guide.tex 2012-12-20 05:02:40 UTC (rev 10788)
@@ -94,7 +94,7 @@
\begin{abstract}
\noindent
ROMIO is a high-performance, portable implementation of MPI-IO (the
-I/O chapter in \mbox{MPI-2}). This document describes how to install and use
+I/O chapter in the \mbox{MPI Standard}). This document describes how to install and use
ROMIO version~1.2.4 on various machines.
\end{abstract}
@@ -102,7 +102,7 @@
ROMIO\footnote{\tt http://www.mcs.anl.gov/romio} is a
high-performance, portable implementation of MPI-IO (the I/O chapter in
-MPI-2~\cite{mpi97a}). This document describes how to install and use
+MPI~\cite{mpi97a}). This document describes how to install and use
ROMIO version~1.2.4 on various machines.
@@ -124,8 +124,8 @@
%
\section{General Information}
-This version of ROMIO includes everything defined in the MPI-2 I/O
-chapter except support for file interoperability (\S~9.5 of MPI-2) and
+This version of ROMIO includes everything defined in the MPI I/O
+chapter except support for file interoperability and
user-defined error handlers for files (\S~4.13.3). The subarray and
distributed array datatype constructor functions from Chapter 4
(\S~4.14.4 \& \S~4.14.5) have been implemented. They are useful for
@@ -324,7 +324,7 @@
the hint is only recognized at \texttt{MPI\_File\_open} time.
The set of hints used with a file is available through the routine
-\texttt{MPI\_File\_get\_info}, as documented in the MPI-2 standard.
+\texttt{MPI\_File\_get\_info}, as documented in the MPI standard.
As an additional feature in the ROMIO implementation, wildcards will
be expanded to indicate the precise configuration used with the file,
with the hostnames in the rank order used for the collective buffering
@@ -654,7 +654,7 @@
\subsection{ROMIO and {\tt MPI\_FILE\_SYNC}}
-The MPI-2 specification notes that a call to {\tt MPI\_FILE\_SYNC} ``causes
+The MPI specification notes that a call to {\tt MPI\_FILE\_SYNC} ``causes
all previous writes to {\tt fh} by the calling process to be transferred to
the storage device.'' Likewise, calls to {\tt MPI\_FILE\_CLOSE} have this
same semantic. Further, ``if all processes have made updates to the storage
@@ -1002,9 +1002,9 @@
\subsection{Major Changes in Version 1.0.2}
\begin{itemize}
-\item Implemented the shared file pointer functions (\S~9.4.4 of MPI-2) and
- split collective I/O functions (\S~9.4.5). Therefore, the main
- components of the MPI-2 I/O chapter not yet implemented are
+\item Implemented the shared file pointer functions and
+ split collective I/O functions. Therefore, the main
+ components of the MPI I/O chapter not yet implemented are
file interoperability and error handling.
\item Added support for using ``direct I/O'' on SGI's XFS file system.
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/include
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/include:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/include:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/include:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/include:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/include:9231
/mpich2/branches/dev/lapi/src/mpi/romio/include:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/include:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/include:5406
/mpich2/trunk/src/mpi/romio/include:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/include:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/include:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/include:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/include:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/include:9231
/mpich2/branches/dev/lapi/src/mpi/romio/include:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/include:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/include:5406
/mpich2/trunk/src/mpi/romio/include:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/localdefs.in
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/localdefs.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/localdefs.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/localdefs.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/localdefs.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/localdefs.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/localdefs.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/localdefs.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/localdefs.in:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/localdefs.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/localdefs.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/localdefs.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/localdefs.in:5406
/mpich2/trunk/src/mpi/romio/localdefs.in:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/localdefs.in:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/localdefs.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/localdefs.in:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/localdefs.in:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/localdefs.in:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/localdefs.in:9231
/mpich2/branches/dev/lapi/src/mpi/romio/localdefs.in:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/localdefs.in:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/localdefs.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/localdefs.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/localdefs.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/localdefs.in:5406
/mpich2/trunk/src/mpi/romio/localdefs.in:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi-io
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/mpi-io:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi-io:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi-io:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi-io:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi-io:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi-io:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi-io:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi-io:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi-io:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi-io:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi-io:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi-io:5406
/mpich2/trunk/src/mpi/romio/mpi-io:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/mpi-io:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi-io:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi-io:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi-io:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi-io:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi-io:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi-io:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi-io:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi-io:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi-io:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi-io:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi-io:5406
/mpich2/trunk/src/mpi/romio/mpi-io:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/mpi2-other
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/mpi2-other:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi2-other:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi2-other:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi2-other:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi2-other:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi2-other:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi2-other:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi2-other:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi2-other:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi2-other:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi2-other:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi2-other:5406
/mpich2/trunk/src/mpi/romio/mpi2-other:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/mpi2-other:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/mpi2-other:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/mpi2-other:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/mpi2-other:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/mpi2-other:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/mpi2-other:9231
/mpich2/branches/dev/lapi/src/mpi/romio/mpi2-other:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/mpi2-other:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/mpi2-other:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/mpi2-other:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/mpi2-other:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/mpi2-other:5406
/mpich2/trunk/src/mpi/romio/mpi2-other:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/test
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/test:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test:5406
/mpich2/trunk/src/mpi/romio/test:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/test:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test:5406
/mpich2/trunk/src/mpi/romio/test:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/test-internal
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/test-internal:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test-internal:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test-internal:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test-internal:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test-internal:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test-internal:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test-internal:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test-internal:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test-internal:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test-internal:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test-internal:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test-internal:5406
/mpich2/trunk/src/mpi/romio/test-internal:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/test-internal:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/test-internal:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/test-internal:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/test-internal:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/test-internal:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/test-internal:9231
/mpich2/branches/dev/lapi/src/mpi/romio/test-internal:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/test-internal:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/test-internal:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/test-internal:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/test-internal:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/test-internal:5406
/mpich2/trunk/src/mpi/romio/test-internal:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpi/romio/util
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpi/romio/util:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/util:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/util:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/util:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/util:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/util:9231
/mpich2/branches/dev/lapi/src/mpi/romio/util:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/util:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/util:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/util:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/util:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/util:5406
/mpich2/trunk/src/mpi/romio/util:10784
+ /mpich2/branches/dev/ckpt/src/mpi/romio/util:5050
/mpich2/branches/dev/ckpt2/src/mpi/romio/util:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpi/romio/util:7771-7802
/mpich2/branches/dev/error-return/src/mpi/romio/util:7662-7670
/mpich2/branches/dev/ftb/src/mpi/romio/util:5661-5730
/mpich2/branches/dev/groupfailed/src/mpi/romio/util:9231
/mpich2/branches/dev/lapi/src/mpi/romio/util:5817
/mpich2/branches/dev/nem-squash/src/mpi/romio/util:9995-9998
/mpich2/branches/dev/reenableas/src/mpi/romio/util:9355
/mpich2/branches/dev/wintcp_async_progress/src/mpi/romio/util:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpi/romio/util:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpi/romio/util:5406
/mpich2/trunk/src/mpi/romio/util:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpid
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/mpid:7771-7802
/mpich2/branches/dev/error-return/src/mpid:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid:9231
/mpich2/branches/dev/nem-squash/src/mpid:9995-9998
/mpich2/branches/dev/reenableas/src/mpid:9355
/mpich2/trunk/src/mpid:10784
+ /mpich2/branches/dev/coll-err-ret/src/mpid:7771-7802
/mpich2/branches/dev/error-return/src/mpid:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid:9231
/mpich2/branches/dev/nem-squash/src/mpid:9995-9998
/mpich2/branches/dev/reenableas/src/mpid:9355
/mpich2/trunk/src/mpid:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/portals4
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9231
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9355
/mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/portals4:10784
+ /mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:7405-7603,7662-7670
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9231
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/portals4nm:9355
/mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/portals4:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5050
/mpich2/branches/dev/ckpt2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7405-7603,7662-7670
/mpich2/branches/dev/ftb/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9231
/mpich2/branches/dev/lapi/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5817
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9355
/mpich2/branches/dev/win_rrvm/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:6416,6428
/mpich2/branches/dev/wintcp_async_progress/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5406
/mpich2/trunk/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:8275
/mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c:10784
+ /mpich2/branches/dev/ckpt/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5050
/mpich2/branches/dev/ckpt2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5057-6537
/mpich2/branches/dev/coll-err-ret/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7771-7802
/mpich2/branches/dev/error-return/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:7405-7603,7662-7670
/mpich2/branches/dev/ftb/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9231
/mpich2/branches/dev/lapi/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5817
/mpich2/branches/dev/reenableas/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:9355
/mpich2/branches/dev/win_rrvm/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:6416,6428
/mpich2/branches/dev/wintcp_async_progress/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:5406
/mpich2/trunk/src/mpid/ch3/channels/nemesis/nemesis/netmod/wintcp/socksm.c:8275
/mpich2/trunk/src/mpid/ch3/channels/nemesis/netmod/wintcp/socksm.c:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/mpl/src/mplstr.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt2/src/mpl/src/string/mplstr.c:5182,5196,5198
/mpich2/branches/dev/coll-err-ret/src/mpl/src/mplstr.c:7771-7802
/mpich2/branches/dev/error-return/src/mpl/src/mplstr.c:7662-7670
/mpich2/branches/dev/ftb/src/mpl/src/mplstr.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpl/src/mplstr.c:9231
/mpich2/branches/dev/lapi/src/mpl/src/mplstr.c:5817
/mpich2/branches/dev/nem-squash/src/mpl/src/mplstr.c:9995-9998
/mpich2/branches/dev/reenableas/src/mpl/src/mplstr.c:9355
/mpich2/branches/release/mpich2-1.1.1/src/mpl/src/string/mplstr.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpl/src/string/mplstr.c:5406
/mpich2/trunk/src/mpl/src/mplstr.c:10784
+ /mpich2/branches/dev/ckpt2/src/mpl/src/string/mplstr.c:5182,5196,5198
/mpich2/branches/dev/coll-err-ret/src/mpl/src/mplstr.c:7771-7802
/mpich2/branches/dev/error-return/src/mpl/src/mplstr.c:7662-7670
/mpich2/branches/dev/ftb/src/mpl/src/mplstr.c:5661-5730
/mpich2/branches/dev/groupfailed/src/mpl/src/mplstr.c:9231
/mpich2/branches/dev/lapi/src/mpl/src/mplstr.c:5817
/mpich2/branches/dev/nem-squash/src/mpl/src/mplstr.c:9995-9998
/mpich2/branches/dev/reenableas/src/mpl/src/mplstr.c:9355
/mpich2/branches/release/mpich2-1.1.1/src/mpl/src/string/mplstr.c:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/mpl/src/string/mplstr.c:5406
/mpich2/trunk/src/mpl/src/mplstr.c:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra:7771-7802*
/mpich2/branches/dev/error-return/src/pm/hydra:7662-7670*
/mpich2/branches/dev/ftb/src/pm/hydra:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra:9231*
/mpich2/branches/dev/lapi/src/pm/hydra:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra:9355*
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra:5406
/mpich2/trunk/src/pm/hydra:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra:7771-7802*
/mpich2/branches/dev/error-return/src/pm/hydra:7662-7670*
/mpich2/branches/dev/ftb/src/pm/hydra:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra:9231*
/mpich2/branches/dev/lapi/src/pm/hydra:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra:9355*
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra:5406
/mpich2/trunk/src/pm/hydra:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/Makefile.am
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/Makefile.am:9231
/mpich2/branches/dev/lapi/src/pm/hydra/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/Makefile.am:5406
/mpich2/trunk/src/pm/hydra/Makefile.am:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/Makefile.am:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/Makefile.am:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/Makefile.am:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/Makefile.am:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/Makefile.am:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/Makefile.am:9231
/mpich2/branches/dev/lapi/src/pm/hydra/Makefile.am:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/Makefile.am:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/Makefile.am:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/Makefile.am:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/Makefile.am:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/Makefile.am:5406
/mpich2/trunk/src/pm/hydra/Makefile.am:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/README
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/README:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/README:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/README:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/README:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/README:9231
/mpich2/branches/dev/lapi/src/pm/hydra/README:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/README:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/README:5406
/mpich2/trunk/src/pm/hydra/README:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/README:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/README:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/README:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/README:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/README:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/README:9231
/mpich2/branches/dev/lapi/src/pm/hydra/README:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/README:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/README:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/README:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/README:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/README:5406
/mpich2/trunk/src/pm/hydra/README:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/autogen.sh
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/autogen.sh:9231
/mpich2/branches/dev/lapi/src/pm/hydra/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/autogen.sh:5406
/mpich2/trunk/src/pm/hydra/autogen.sh:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/autogen.sh:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/autogen.sh:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/autogen.sh:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/autogen.sh:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/autogen.sh:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/autogen.sh:9231
/mpich2/branches/dev/lapi/src/pm/hydra/autogen.sh:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/autogen.sh:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/autogen.sh:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/autogen.sh:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/autogen.sh:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/autogen.sh:5406
/mpich2/trunk/src/pm/hydra/autogen.sh:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/configure.ac
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/configure.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/configure.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/configure.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/configure.in:5406
/mpich2/trunk/src/pm/hydra/configure.ac:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/configure.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/configure.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/configure.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/configure.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/configure.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/configure.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/configure.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/configure.ac:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/configure.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/configure.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/configure.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/configure.in:5406
/mpich2/trunk/src/pm/hydra/configure.ac:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/examples
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/examples:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/examples:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/examples:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/examples:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/examples:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/examples:9231
/mpich2/branches/dev/lapi/src/pm/hydra/examples:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/examples:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/examples:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/examples:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/examples:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/examples:5406
/mpich2/trunk/src/pm/hydra/examples:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/examples:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/examples:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/examples:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/examples:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/examples:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/examples:9231
/mpich2/branches/dev/lapi/src/pm/hydra/examples:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/examples:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/examples:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/examples:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/examples:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/examples:5406
/mpich2/trunk/src/pm/hydra/examples:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/hydra-doxygen.cfg.in
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/hydra-doxygen.cfg.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/hydra-doxygen.cfg.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/hydra-doxygen.cfg.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/hydra-doxygen.cfg.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/hydra-doxygen.cfg.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/hydra-doxygen.cfg.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/hydra-doxygen.cfg.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/hydra-doxygen.cfg.in:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/hydra-doxygen.cfg.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/hydra-doxygen.cfg.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/hydra-doxygen.cfg.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/hydra-doxygen.cfg.in:5406
/mpich2/trunk/src/pm/hydra/hydra-doxygen.cfg.in:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/hydra-doxygen.cfg.in:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/hydra-doxygen.cfg.in:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/hydra-doxygen.cfg.in:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/hydra-doxygen.cfg.in:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/hydra-doxygen.cfg.in:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/hydra-doxygen.cfg.in:9231
/mpich2/branches/dev/lapi/src/pm/hydra/hydra-doxygen.cfg.in:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/hydra-doxygen.cfg.in:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/hydra-doxygen.cfg.in:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/hydra-doxygen.cfg.in:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/hydra-doxygen.cfg.in:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/hydra-doxygen.cfg.in:5406
/mpich2/trunk/src/pm/hydra/hydra-doxygen.cfg.in:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/include
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/include:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/include:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/include:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/include:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/include:9231
/mpich2/branches/dev/lapi/src/pm/hydra/include:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/include:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/include:5406
/mpich2/trunk/src/pm/hydra/include:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/include:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/include:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/include:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/include:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/include:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/include:9231
/mpich2/branches/dev/lapi/src/pm/hydra/include:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/include:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/include:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/include:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/include:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/include:5406
/mpich2/trunk/src/pm/hydra/include:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/mpichprereq
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/mpich2prereq:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/mpich2prereq:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/mpich2prereq:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/mpich2prereq:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/mpich2prereq:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/mpich2prereq:9231
/mpich2/branches/dev/lapi/src/pm/hydra/mpich2prereq:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/mpich2prereq:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/mpich2prereq:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/mpich2prereq:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/mpich2prereq:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/mpich2prereq:5406
/mpich2/trunk/src/pm/hydra/mpichprereq:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/mpich2prereq:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/mpich2prereq:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/mpich2prereq:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/mpich2prereq:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/mpich2prereq:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/mpich2prereq:9231
/mpich2/branches/dev/lapi/src/pm/hydra/mpich2prereq:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/mpich2prereq:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/mpich2prereq:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/mpich2prereq:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/mpich2prereq:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/mpich2prereq:5406
/mpich2/trunk/src/pm/hydra/mpichprereq:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/pm
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/pm:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/pm:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/pm:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/pm:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/pm:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/pm:9231
/mpich2/branches/dev/lapi/src/pm/hydra/pm:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/pm:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/pm:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/pm:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/pm:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/pm:5406
/mpich2/trunk/src/pm/hydra/pm:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/pm:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/pm:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/pm:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/pm:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/pm:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/pm:9231
/mpich2/branches/dev/lapi/src/pm/hydra/pm:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/pm:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/pm:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/pm:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/pm:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/pm:5406
/mpich2/trunk/src/pm/hydra/pm:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/tools
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/tools:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/tools:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/tools:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/tools:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/tools:5406
/mpich2/trunk/src/pm/hydra/tools:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/tools:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/tools:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/tools:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/tools:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/tools:5406
/mpich2/trunk/src/pm/hydra/tools:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9355
/mpich2/trunk/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:10784
+ /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/slurm/slurm_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:9355
/mpich2/trunk/src/pm/hydra/tools/bootstrap/external/slurm_query_proxy_id.c:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9355
/mpich2/trunk/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:10784
+ /mpich2/branches/dev/coll-err-ret/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9231
/mpich2/branches/dev/lapi/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:9355
/mpich2/trunk/src/pm/hydra/tools/bootstrap/src/bsci_query_proxy_id.c:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/ui
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/ui:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/ui:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/ui:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/ui:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/ui:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/ui:9231
/mpich2/branches/dev/lapi/src/pm/hydra/ui:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/ui:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/ui:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/ui:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/ui:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/ui:5406
/mpich2/trunk/src/pm/hydra/ui:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/ui:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/ui:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/ui:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/ui:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/ui:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/ui:9231
/mpich2/branches/dev/lapi/src/pm/hydra/ui:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/ui:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/ui:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/ui:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/ui:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/ui:5406
/mpich2/trunk/src/pm/hydra/ui:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/src/pm/hydra/utils
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/src/pm/hydra/utils:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/utils:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/utils:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/utils:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/utils:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/utils:9231
/mpich2/branches/dev/lapi/src/pm/hydra/utils:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/utils:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/utils:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/utils:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/utils:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/utils:5406
/mpich2/trunk/src/pm/hydra/utils:10784
+ /mpich2/branches/dev/ckpt/src/pm/hydra/utils:5050
/mpich2/branches/dev/ckpt2/src/pm/hydra/utils:5057-6537
/mpich2/branches/dev/coll-err-ret/src/pm/hydra/utils:7771-7802
/mpich2/branches/dev/error-return/src/pm/hydra/utils:7662-7670
/mpich2/branches/dev/ftb/src/pm/hydra/utils:5661-5730
/mpich2/branches/dev/groupfailed/src/pm/hydra/utils:9231
/mpich2/branches/dev/lapi/src/pm/hydra/utils:5817
/mpich2/branches/dev/nem-squash/src/pm/hydra/utils:9995-9998
/mpich2/branches/dev/reenableas/src/pm/hydra/utils:9355
/mpich2/branches/dev/wintcp_async_progress/src/pm/hydra/utils:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/src/pm/hydra/utils:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/src/pm/hydra/utils:5406
/mpich2/trunk/src/pm/hydra/utils:10784,10786-10787
Property changes on: mpich2/branches/release/mpich-3.0/winconfigure.wsf
___________________________________________________________________
Modified: svn:mergeinfo
- /mpich2/branches/dev/ckpt/winconfigure.wsf:5050
/mpich2/branches/dev/ckpt2/winconfigure.wsf:5057-6537
/mpich2/branches/dev/coll-err-ret/winconfigure.wsf:7771-7802
/mpich2/branches/dev/error-return/winconfigure.wsf:7662-7670
/mpich2/branches/dev/ftb/winconfigure.wsf:5661-5730
/mpich2/branches/dev/groupfailed/winconfigure.wsf:9231
/mpich2/branches/dev/lapi/winconfigure.wsf:5817
/mpich2/branches/dev/nem-squash/winconfigure.wsf:9995-9998
/mpich2/branches/dev/reenableas/winconfigure.wsf:9355
/mpich2/branches/dev/win_rrvm/winconfigure.wsf:6404,6407-6408,6420,6422-6423
/mpich2/branches/dev/wintcp_async_progress/winconfigure.wsf:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/winconfigure.wsf:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/winconfigure.wsf:5406
/mpich2/trunk/winconfigure.wsf:10784
+ /mpich2/branches/dev/ckpt/winconfigure.wsf:5050
/mpich2/branches/dev/ckpt2/winconfigure.wsf:5057-6537
/mpich2/branches/dev/coll-err-ret/winconfigure.wsf:7771-7802
/mpich2/branches/dev/error-return/winconfigure.wsf:7662-7670
/mpich2/branches/dev/ftb/winconfigure.wsf:5661-5730
/mpich2/branches/dev/groupfailed/winconfigure.wsf:9231
/mpich2/branches/dev/lapi/winconfigure.wsf:5817
/mpich2/branches/dev/nem-squash/winconfigure.wsf:9995-9998
/mpich2/branches/dev/reenableas/winconfigure.wsf:9355
/mpich2/branches/dev/win_rrvm/winconfigure.wsf:6404,6407-6408,6420,6422-6423
/mpich2/branches/dev/wintcp_async_progress/winconfigure.wsf:5008-5009,5123,5555-5559,5561-5564,5566-5567,5570,5577-5581,5613-5616,5619
/mpich2/branches/release/mpich2-1.1.1/winconfigure.wsf:5022,5032,5110,5113,5140-5141
/mpich2/branches/release/mpich2-1.2/winconfigure.wsf:5406
/mpich2/trunk/winconfigure.wsf:10784,10786-10787
1
0