[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1-23-gc5d0d88
Service Account
noreply at mpich.org
Sun Mar 2 12:54:38 CST 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via c5d0d88db1ce0f468157ccd871568b501d870814 (commit)
from de80ec8704071f3b9c810509fb8acee345865902 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/c5d0d88db1ce0f468157ccd871568b501d870814
commit c5d0d88db1ce0f468157ccd871568b501d870814
Author: William Gropp <wgropp at illinois.edu>
Date: Fri Feb 28 16:09:49 2014 +0900
Correct CPP name
ifdef test on the need for a prototype declaration was using the
wrong name. This may have been caused by a change in the name
of the CPP value without correcting the use of that name in this file.
diff --git a/src/pm/util/newsession.c b/src/pm/util/newsession.c
index 91271c4..c597dd7 100644
--- a/src/pm/util/newsession.c
+++ b/src/pm/util/newsession.c
@@ -24,7 +24,7 @@ void MPIE_CreateNewSession( void )
{
#if defined(HAVE_SETSID) && defined(HAVE_ISATTY) && \
defined(USE_NEW_SESSION) && defined(HAVE_GETSID)
-#ifdef NEEDS_GETSID_PROTOTYPE
+#ifdef NEEDS_GETSID_DECL
pid_t getsid(pid_t);
#endif
if (!isatty(0) && !isatty(1) && !isatty(2) && getsid(0) != getpid()) {
-----------------------------------------------------------------------
Summary of changes:
src/pm/util/newsession.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list