[mpich2-commits] r5389 - mpich2/trunk/src/pm/smpd
jayesh at mcs.anl.gov
jayesh at mcs.anl.gov
Thu Oct 1 16:35:26 CDT 2009
Author: jayesh
Date: 2009-10-01 16:35:26 -0500 (Thu, 01 Oct 2009)
New Revision: 5389
Modified:
mpich2/trunk/src/pm/smpd/mp_parse_command_line.c
Log:
Adding channel deprecated msg for users choosing the SHM channel on windows
Modified: mpich2/trunk/src/pm/smpd/mp_parse_command_line.c
===================================================================
--- mpich2/trunk/src/pm/smpd/mp_parse_command_line.c 2009-10-01 18:11:54 UTC (rev 5388)
+++ mpich2/trunk/src/pm/smpd/mp_parse_command_line.c 2009-10-01 21:35:26 UTC (rev 5389)
@@ -1821,6 +1821,10 @@
return SMPD_FAIL;
}
strncpy(channel, (*argvp)[2], SMPD_MAX_NAME_LENGTH);
+ if(strcmp(channel, "shm") == 0)
+ {
+ printf("WARNING: SHM channel is now deprecated. Use the NEMESIS channel instead.\n");
+ }
num_args_to_strip = 2;
}
else if (strcmp(&(*argvp)[1][1], "log") == 0)
More information about the mpich2-commits
mailing list