/*D
   MPI_Startall - Starts a collection of persistent requests

Synopsis:
.vb
int MPI_Startall(int count, MPI_Request array_of_requests[])
.ve

Input Parameters:
. count - list length (non-negative integer)

Input/Output Parameters:
. array_of_requests - array of requests (handle)

Notes:
Unlike 'MPI_Waitall', 'MPI_Startall' does not provide a mechanism for
returning multiple errors nor pinpointing the request(s) involved.
Furthermore, the behavior of 'MPI_Startall' after an error occurs is not
defined by the MPI standard.  If well-defined error reporting and behavior
are required, multiple calls to 'MPI_Start' should be used instead.

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_COUNT
.N MPI_ERR_REQUEST
.N MPI_ERR_OTHER

D*/

