Triton Repository branch, master, updated. af4576026390a1c46d1d5ebc4b4d983214ed3740
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 "Triton Repository". The branch, master has been updated via af4576026390a1c46d1d5ebc4b4d983214ed3740 (commit) from da77b103814bafa582620190c16f8d17b9df86a9 (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 ----------------------------------------------------------------- commit af4576026390a1c46d1d5ebc4b4d983214ed3740 Author: Phil Carns <[email protected]> Date: Fri Aug 20 17:06:08 2010 -0400 minor mutex bug fix ----------------------------------------------------------------------- Summary of changes: code/src/net/mpi/mpi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Diff of changes: diff --git a/code/src/net/mpi/mpi.c b/code/src/net/mpi/mpi.c index e406ed0..27e0f2c 100644 --- a/code/src/net/mpi/mpi.c +++ b/code/src/net/mpi/mpi.c @@ -441,9 +441,9 @@ static triton_ret_t mpi_context_poll(struct mpi_context *mpi_ctx, int millisecs) if(ret != 0) { /* we assume timedout or was interrupted by a signal */ - triton_mutex_unlock(&mpi_ctx->wait_mutex); if(ret != ETIMEDOUT) { + triton_mutex_unlock(&mpi_ctx->wait_mutex); return triton_error_from_errno(ret); } } hooks/post-receive -- Triton Repository
participants (1)
-
noreply@mcs.anl.gov