X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/599bd9a7badf64009f454533e4ae8767f659f2fc..883836caa1591da62cc49b189db7ef6ecc25bdc7:/src/smpi/private.h diff --git a/src/smpi/private.h b/src/smpi/private.h index f72f51522c..9c8c789a3b 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -94,10 +94,12 @@ typedef struct s_smpi_mpi_request { #endif } s_smpi_mpi_request_t; -void smpi_process_init(int *argc, char ***argv); void smpi_process_destroy(void); void smpi_process_finalize(void); int smpi_process_finalized(void); +int smpi_process_initialized(void); +void smpi_process_mark_as_initialized(void); + smpi_process_data_t smpi_process_data(void); smpi_process_data_t smpi_process_remote_data(int index); @@ -455,6 +457,7 @@ void mpi_errhandler_free_ (void* errhandler, int* ierr) ; void mpi_errhandler_get_ (int* comm, void* errhandler, int* ierr) ; void mpi_errhandler_set_ (int* comm, void* errhandler, int* ierr) ; void mpi_comm_set_errhandler_ (int* comm, void* errhandler, int* ierr) ; +void mpi_comm_get_errhandler_ (int* comm, void* errhandler, int* ierr) ; void mpi_type_contiguous_ (int* count, int* old_type, int* newtype, int* ierr) ; void mpi_cancel_ (int* request, int* ierr) ; void mpi_buffer_attach_ (void* buffer, int* size, int* ierr) ; @@ -466,6 +469,7 @@ void mpi_pack_external_size_ (char *datarep, int* incount, int* datatype, MPI_Ai void mpi_pack_external_ (char *datarep, void *inbuf, int* incount, int* datatype, void *outbuf, MPI_Aint* outcount, MPI_Aint *position, int* ierr); void mpi_unpack_external_ ( char *datarep, void *inbuf, MPI_Aint* insize, MPI_Aint *position, void *outbuf, int* outcount, int* datatype, int* ierr); void mpi_type_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int* newtype, int* ierr) ; +void mpi_type_create_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int* newtype, int* ierr) ; void mpi_type_create_hindexed_block_ (int* count, int* blocklength, MPI_Aint* indices, int* old_type, int* newtype, int* ierr) ; void mpi_type_indexed_ (int* count, int* blocklens, int* indices, int* old_type, int* newtype, int* ierr) ; void mpi_type_create_indexed_block_ (int* count, int* blocklength, int* indices, int* old_type, int*newtype, int* ierr); @@ -543,7 +547,7 @@ void mpi_comm_get_parent_ ( int*parent, int* ierr); /* from smpi_instr.c */ void TRACE_internal_smpi_set_category (const char *category); const char *TRACE_internal_smpi_get_category (void); -void TRACE_smpi_collective_in(int rank, int root, const char *operation); +void TRACE_smpi_collective_in(int rank, int root, const char *operation, int size); void TRACE_smpi_collective_out(int rank, int root, const char *operation); void TRACE_smpi_computing_init(int rank); void TRACE_smpi_computing_out(int rank);