[mpich2-commits] r7674 - mpich2/trunk/src/mpid/ch3/src
buntinas at mcs.anl.gov
buntinas at mcs.anl.gov
Thu Jan 6 16:16:09 CST 2011
Author: buntinas
Date: 2011-01-06 16:16:09 -0600 (Thu, 06 Jan 2011)
New Revision: 7674
Modified:
mpich2/trunk/src/mpid/ch3/src/ch3u_handle_connection.c
Log:
accidentally removed volatile from wrong variable in r7669
Modified: mpich2/trunk/src/mpid/ch3/src/ch3u_handle_connection.c
===================================================================
--- mpich2/trunk/src/mpid/ch3/src/ch3u_handle_connection.c 2011-01-06 21:58:50 UTC (rev 7673)
+++ mpich2/trunk/src/mpid/ch3/src/ch3u_handle_connection.c 2011-01-06 22:16:09 UTC (rev 7674)
@@ -7,8 +7,8 @@
#include "mpidimpl.h"
/* Count the number of outstanding close requests */
-static int MPIDI_Outstanding_close_ops = 0;
-volatile int MPIDI_Failed_vc_count = 0;
+static volatile int MPIDI_Outstanding_close_ops = 0;
+int MPIDI_Failed_vc_count = 0;
#undef FUNCNAME
#define FUNCNAME MPIDI_CH3U_Handle_connection
More information about the mpich2-commits
mailing list