mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: IOstream::unsetf() now returns old flags (eg, for toggling)
ENH: align MPI_Probe non-blocking handling with header description - the header states that the commsType is non-blocking or not, but the implementation actually checked for 'buffered' or not. STYLE: fix some spacing and some documentation
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
Test-parallel-broadcast.C
|
||||
Test-parallel-broadcast.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-broadcast
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-chunks.C
|
||||
Test-parallel-chunks.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-chunks
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-comm0.C
|
||||
Test-parallel-comm0.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-comm0
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-comm1.C
|
||||
Test-parallel-comm1.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-comm1
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-comm3a.C
|
||||
Test-parallel-comm3a.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-comm3a
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-comm3b.C
|
||||
Test-parallel-comm3b.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-comm3b
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-external-init.C
|
||||
Test-parallel-external-init.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-external-init
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-nbx2.C
|
||||
Test-parallel-nbx2.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-nbx2
|
||||
|
||||
@ -131,7 +131,6 @@ int main(int argc, char *argv[])
|
||||
if (probed.second > 0)
|
||||
{
|
||||
// Message found and had size: receive it
|
||||
|
||||
const label proci(probed.first);
|
||||
const label count(probed.second);
|
||||
|
||||
@ -164,8 +163,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
scalarField fld(is);
|
||||
|
||||
Info<< "from [" << probed.first
|
||||
<< "] : " << flatOutput(fld) << endl;
|
||||
Info<< "from [" << proci << "] : " << flatOutput(fld) << endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-nonBlocking.C
|
||||
Test-parallel-nonBlocking.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-nonBlocking
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
Test-parallel-waitSome.C
|
||||
Test-parallel-waitSome.cxx
|
||||
|
||||
EXE = $(FOAM_USER_APPBIN)/Test-parallel-waitSome
|
||||
|
||||
Reference in New Issue
Block a user