root/ompi/mca/io/romio321/romio/include/ompi_grequestx.h

/* [<][>][^][v][top][bottom][index][help] */
   1 #define HAVE_MPI_GREQUEST_EXTENSIONS 1
   2 
   3 extern void opal_progress(void);
   4 
   5 typedef int (MPIX_Grequest_poll_function)(void *, MPI_Status *);
   6 typedef int (MPIX_Grequest_wait_function)(int, void **, double, MPI_Status *);
   7 typedef int MPIX_Grequest_class;
   8 
   9 extern int ompi_grequestx_start(
  10     MPI_Grequest_query_function *gquery,
  11     MPI_Grequest_free_function *gfree,
  12     MPI_Grequest_cancel_function *gcancel,
  13     MPIX_Grequest_poll_function *gpoll,
  14     void* gstate,
  15     MPI_Request* request);
  16 
  17 extern int ompi_grequestx_class_create(
  18     MPI_Grequest_query_function *gquery,
  19     MPI_Grequest_free_function *gfree,
  20     MPI_Grequest_cancel_function *gcancel,
  21     MPIX_Grequest_poll_function *gpoll,
  22     MPIX_Grequest_wait_function *gwait,
  23     MPIX_Grequest_class *greq_class);
  24 
  25 extern int ompi_grequestx_class_allocate(
  26     MPIX_Grequest_class greq_class,
  27     void *extra_state,
  28     MPI_Request* request);
  29 
  30 #define MPIR_Ext_cs_yield opal_progress
  31 #define PMPIX_Grequest_class_allocate(greq_class,extra_state,request) ompi_grequestx_class_allocate(greq_class,extra_state,request)
  32 #define PMPIX_Grequest_class_create(query_fn,free_fn,cancel_fn,poll_fn,wait_fn,greq_class) ompi_grequestx_class_create(query_fn,free_fn,cancel_fn,poll_fn,wait_fn,greq_class)
  33 #define PMPIX_Grequest_start(query_fn,free_fn,cancel_fn,poll_fn,extra_state,request) ompi_grequestx_start(query_fn,free_fn,cancel_fn,poll_fn,extra_state,request)
  34 

/* [<][>][^][v][top][bottom][index][help] */