On Feb 11, 2010, at 10:58 AM, Jeff Squyres (jsquyres) wrote:
> ...and 1.5. :-)
Err... never mind. It's already there. :-)
/me slinks off into the night...
--
Jeff Squyres
jsquy...@cisco.com
For corporate legal information go to:
http://www.cisco.com/web/about/doing_business/legal/cri/
...and 1.5. :-)
On Feb 11, 2010, at 10:53 AM, George Bosilca wrote:
> This has been corrected on the trunk
> (https://svn.open-mpi.org/trac/ompi/changeset/20537). Unfortunately, the
> corresponding patch didn't make it into the 1.4.1. I'll create a ticket to
> push it into the 1.4.2.
>
> g
This has been corrected on the trunk
(https://svn.open-mpi.org/trac/ompi/changeset/20537). Unfortunately, the
corresponding patch didn't make it into the 1.4.1. I'll create a ticket to push
it into the 1.4.2.
george.
On Feb 11, 2010, at 10:15 , Lisandro Dalcin wrote:
> Why Request_free() an
Why Request_free() and Cancel() do not fail when REQUEST_NULL is
passed? Am I missing something?
#include
int main(int argc, char *argv[])
{
MPI_Request req;
MPI_Init(&argc, &argv);
req = MPI_REQUEST_NULL;
MPI_Request_free(&req);
req = MPI_REQUEST_NULL;
MPI_Cancel(&req);
MPI_Finali