[Gs-commits] Grayskull Repository branch, master, updated. git-migration-313-gbed4c81
A ref change was pushed to the repository containing the project "Grayskull Repository". The branch, master has been updated via bed4c81bd15323110dfee6c35bf7485d11736e99 (commit) from 065efd31f7ba81701356b4247a781e2d25f18323 (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 bed4c81bd15323110dfee6c35bf7485d11736e99 Author: Phil Carns <[email protected]> Date: Thu Dec 17 16:12:36 2009 -0500 use pprivate modifier in parallelfor tests ----------------------------------------------------------------------- Summary of changes: code/src/gsl/tests/correctness/parallelfor.gs | 3 ++- code/src/gsl/tests/correctness/parallelfor2.gs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) Diff of changes: diff --git a/code/src/gsl/tests/correctness/parallelfor.gs b/code/src/gsl/tests/correctness/parallelfor.gs index 644a511..b2291aa 100644 --- a/code/src/gsl/tests/correctness/parallelfor.gs +++ b/code/src/gsl/tests/correctness/parallelfor.gs @@ -11,7 +11,8 @@ static __blocking void run_parfor(void) pwait { - int i, j; + pprivate int i; + pprivate int j; for(i = 0; i < 100; ++i) { pbranch diff --git a/code/src/gsl/tests/correctness/parallelfor2.gs b/code/src/gsl/tests/correctness/parallelfor2.gs index 955e719..b757cfe 100644 --- a/code/src/gsl/tests/correctness/parallelfor2.gs +++ b/code/src/gsl/tests/correctness/parallelfor2.gs @@ -15,7 +15,7 @@ static __blocking void run_parfor( pwait { - int i; + pprivate int i; for (i = 0; i < 2; ++i) { pbranch hooks/post-receive -- Grayskull Repository
participants (1)
-
noreply@mcs.anl.gov