Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7c3e483a0350448eb3b2935255e90274d2cf8ead
[simgrid.git] / src / smpi / smpi_f77.c
1 /* Copyright (c) 2010-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <limits.h>
8 #include <stdio.h>
9
10 #include "private.h"
11 #include "xbt.h"
12
13 extern int xargc;
14 extern char** xargv;
15
16 static xbt_dict_t comm_lookup = NULL;
17 static xbt_dict_t group_lookup = NULL;
18 static xbt_dict_t request_lookup = NULL;
19 static xbt_dict_t datatype_lookup = NULL;
20 static xbt_dict_t op_lookup = NULL;
21 static int running_processes = 0;
22
23 /* Bindings for MPI special values */
24 union u_smpi_common {
25   struct s_smpi_common {
26     integer mpi_in_place;
27     integer mpi_bottom;
28     integer mpi_status_ignore;
29     integer mpi_statuses_ignore;
30   } f90;                        /* with gftortran */
31   struct s_smpi_common *f77;    /* with f2c */
32 } smpi_;
33
34 /* Convert between Fortran and C */
35 static XBT_INLINE void *f2c_addr(void *addr, void *cval, void *chk1, void *chk2)
36 {
37   return (addr == chk1 || addr == chk2) ? cval : addr;
38 }
39 #define F2C_ADDR(addr, cval, fval) \
40   f2c_addr(addr, cval, &smpi_.f90.fval, &smpi_.f77[smpi_current_rank].fval)
41 #define F2C_BOTTOM(addr) \
42   F2C_ADDR(addr, MPI_BOTTOM, mpi_bottom)
43 #define F2C_IN_PLACE(addr) \
44   F2C_ADDR(addr, MPI_IN_PLACE, mpi_in_place)
45 #define F2C_STATUS_IGNORE(addr) \
46   F2C_ADDR(addr, MPI_STATUS_IGNORE, mpi_status_ignore)
47 #define F2C_STATUSES_IGNORE(addr) \
48   F2C_ADDR(addr, MPI_STATUSES_IGNORE, mpi_statuses_ignore)
49
50 #define KEY_SIZE (sizeof(int) * 2 + 1)
51
52
53 static char* get_key(char* key, int id) {
54   snprintf(key, KEY_SIZE, "%x",id);
55   return key;
56 }
57 static char* get_key_id(char* key, int id) {
58   snprintf(key, KEY_SIZE, "%x_%d",id, smpi_process_index());
59   return key;
60 }
61
62 static int new_comm(MPI_Comm comm) {
63   static int comm_id = 0;
64   char key[KEY_SIZE];
65   xbt_dict_set(comm_lookup, comm==MPI_COMM_WORLD? get_key(key, comm_id) : get_key_id(key, comm_id), comm, NULL);
66   comm_id++;
67   return comm_id-1;
68 }
69
70 static void free_comm(int comm) {
71   char key[KEY_SIZE];
72   xbt_dict_remove(comm_lookup, comm==0? get_key(key, comm) : get_key_id(key, comm));
73 }
74
75 static MPI_Comm get_comm(int comm) {
76   if(comm == -2) {
77     return MPI_COMM_SELF;
78   }else if(comm==0){
79     return MPI_COMM_WORLD;
80   }     else if(comm_lookup && comm >= 0) {
81
82       char key[KEY_SIZE];
83       MPI_Comm tmp =  (MPI_Comm)xbt_dict_get_or_null(comm_lookup,get_key_id(key, comm));
84       return tmp != NULL ? tmp : MPI_COMM_NULL ;
85   }
86   return MPI_COMM_NULL;
87 }
88
89 static int new_group(MPI_Group group) {
90   static int group_id = 0;
91   char key[KEY_SIZE];
92   xbt_dict_set(group_lookup, get_key(key, group_id), group, NULL);
93   group_id++;
94   return group_id-1;
95 }
96
97 static MPI_Group get_group(int group) {
98   if(group == -2) {
99     return MPI_GROUP_EMPTY;
100   } else if(group_lookup && group >= 0) {
101     char key[KEY_SIZE];
102     return (MPI_Group)xbt_dict_get_or_null(group_lookup, get_key(key, group));
103   }
104   return MPI_GROUP_NULL;
105 }
106
107 static void free_group(int group) {
108   char key[KEY_SIZE];
109   xbt_dict_remove(group_lookup, get_key(key, group));
110 }
111
112
113
114 static int new_request(MPI_Request req) {
115   static int request_id = INT_MIN;
116   char key[KEY_SIZE];
117   xbt_dict_set(request_lookup, get_key_id(key, request_id), req, NULL);
118   request_id++;
119   return request_id-1;
120 }
121
122 static MPI_Request find_request(int req) {
123   char key[KEY_SIZE];
124   if(req==MPI_FORTRAN_REQUEST_NULL)return MPI_REQUEST_NULL;
125   return (MPI_Request)xbt_dict_get(request_lookup, get_key_id(key, req));
126 }
127
128 static void free_request(int request) {
129   char key[KEY_SIZE];
130   if(request!=MPI_FORTRAN_REQUEST_NULL)
131   xbt_dict_remove(request_lookup, get_key_id(key, request));
132 }
133
134 static int new_datatype(MPI_Datatype datatype) {
135   static int datatype_id = 0;
136   char key[KEY_SIZE];
137   xbt_dict_set(datatype_lookup, get_key(key, datatype_id), datatype, NULL);
138   datatype_id++;
139   return datatype_id-1;
140 }
141
142 static MPI_Datatype get_datatype(int datatype) {
143   char key[KEY_SIZE];
144   return datatype >= 0
145          ? (MPI_Datatype)xbt_dict_get_or_null(datatype_lookup, get_key(key, datatype))
146          : MPI_DATATYPE_NULL;
147 }
148
149 static void free_datatype(int datatype) {
150   char key[KEY_SIZE];
151   xbt_dict_remove(datatype_lookup, get_key(key, datatype));
152 }
153
154 static int new_op(MPI_Op op) {
155   static int op_id = 0;
156   char key[KEY_SIZE];
157   xbt_dict_set(op_lookup, get_key(key, op_id), op, NULL);
158   op_id++;
159   return op_id-1;
160 }
161
162 static MPI_Op get_op(int op) {
163   char key[KEY_SIZE];
164    return op >= 0
165           ? (MPI_Op)xbt_dict_get_or_null(op_lookup,  get_key(key, op))
166           : MPI_OP_NULL;
167 }
168
169 static void free_op(int op) {
170   char key[KEY_SIZE];
171   xbt_dict_remove(op_lookup, get_key(key, op));
172 }
173
174 void mpi_init_(int* ierr) {
175    if(!comm_lookup){
176      comm_lookup = xbt_dict_new_homogeneous(NULL);
177      new_comm(MPI_COMM_WORLD);
178      group_lookup = xbt_dict_new_homogeneous(NULL);
179
180      request_lookup = xbt_dict_new_homogeneous(NULL);
181
182      datatype_lookup = xbt_dict_new_homogeneous(NULL);
183      new_datatype(MPI_BYTE);
184      new_datatype(MPI_CHAR);
185      new_datatype(MPI_INT);
186      new_datatype(MPI_INT);
187      new_datatype(MPI_INT8_T);
188      new_datatype(MPI_INT16_T);
189      new_datatype(MPI_INT32_T);
190      new_datatype(MPI_INT64_T);
191      new_datatype(MPI_FLOAT);
192      new_datatype(MPI_FLOAT);
193      new_datatype(MPI_DOUBLE);
194      new_datatype(MPI_DOUBLE);
195      new_datatype(MPI_C_FLOAT_COMPLEX);
196      new_datatype(MPI_C_DOUBLE_COMPLEX);
197      new_datatype(MPI_2INT);
198      new_datatype(MPI_UINT8_T);
199      new_datatype(MPI_UINT16_T);
200      new_datatype(MPI_UINT32_T);
201      new_datatype(MPI_UINT64_T);
202      new_datatype(MPI_2FLOAT);
203      new_datatype(MPI_2DOUBLE);
204      new_datatype(MPI_DOUBLE);
205      new_datatype(MPI_DOUBLE);
206      new_datatype(MPI_INT);
207      new_datatype(MPI_DATATYPE_NULL);
208      new_datatype(MPI_DATATYPE_NULL);
209      new_datatype(MPI_DATATYPE_NULL);
210      new_datatype(MPI_DATATYPE_NULL);
211      op_lookup = xbt_dict_new_homogeneous(NULL);
212      new_op(MPI_MAX);
213      new_op(MPI_MIN);
214      new_op(MPI_MAXLOC);
215      new_op(MPI_MINLOC);
216      new_op(MPI_SUM);
217      new_op(MPI_PROD);
218      new_op(MPI_LAND);
219      new_op(MPI_LOR);
220      new_op(MPI_LXOR);
221      new_op(MPI_BAND);
222      new_op(MPI_BOR);
223      new_op(MPI_BXOR);
224    }
225    /* smpif2c is responsible for generating a call with the final arguments */
226    *ierr = MPI_Init(NULL, NULL);
227    running_processes++;
228 }
229
230 void mpi_finalize_(int* ierr) {
231    *ierr = MPI_Finalize();
232    running_processes--;
233    if(running_processes==0){
234      xbt_dict_free(&op_lookup);
235      xbt_dict_free(&datatype_lookup);
236      xbt_dict_free(&request_lookup);
237      xbt_dict_free(&group_lookup);
238      xbt_dict_free(&comm_lookup);
239    }
240 }
241
242 void mpi_abort_(int* comm, int* errorcode, int* ierr) {
243   *ierr = MPI_Abort(get_comm(*comm), *errorcode);
244 }
245
246 void mpi_comm_rank_(int* comm, int* rank, int* ierr) {
247    *ierr = MPI_Comm_rank(get_comm(*comm), rank);
248 }
249
250 void mpi_comm_size_(int* comm, int* size, int* ierr) {
251    *ierr = MPI_Comm_size(get_comm(*comm), size);
252 }
253
254 double mpi_wtime_(void) {
255    return MPI_Wtime();
256 }
257
258 double mpi_wtick_(void) {
259   return MPI_Wtick();
260 }
261
262 void mpi_comm_dup_(int* comm, int* newcomm, int* ierr) {
263   MPI_Comm tmp;
264
265   *ierr = MPI_Comm_dup(get_comm(*comm), &tmp);
266   if(*ierr == MPI_SUCCESS) {
267     *newcomm = new_comm(tmp);
268   }
269 }
270
271 void mpi_comm_create_(int* comm, int* group, int* newcomm, int* ierr) {
272   MPI_Comm tmp;
273
274   *ierr = MPI_Comm_create(get_comm(*comm),get_group(*group), &tmp);
275   if(*ierr == MPI_SUCCESS) {
276     *newcomm = new_comm(tmp);
277   }
278 }
279
280
281 void mpi_comm_free_(int* comm, int* ierr) {
282   MPI_Comm tmp = get_comm(*comm);
283
284   *ierr = MPI_Comm_free(&tmp);
285
286   if(*ierr == MPI_SUCCESS) {
287     free_comm(*comm);
288   }
289 }
290
291 void mpi_comm_split_(int* comm, int* color, int* key, int* comm_out, int* ierr) {
292   MPI_Comm tmp;
293
294   *ierr = MPI_Comm_split(get_comm(*comm), *color, *key, &tmp);
295   if(*ierr == MPI_SUCCESS) {
296     *comm_out = new_comm(tmp);
297   }
298 }
299
300 void mpi_group_incl_(int* group, int* n, int* ranks, int* group_out, int* ierr) {
301   MPI_Group tmp;
302
303   *ierr = MPI_Group_incl(get_group(*group), *n, ranks, &tmp);
304   if(*ierr == MPI_SUCCESS) {
305     *group_out = new_group(tmp);
306   }
307 }
308
309 void mpi_comm_group_(int* comm, int* group_out,  int* ierr) {
310   MPI_Group tmp;
311
312   *ierr = MPI_Comm_group(get_comm(*comm), &tmp);
313   if(*ierr == MPI_SUCCESS) {
314     *group_out = new_group(tmp);
315   }
316 }
317
318
319 void mpi_initialized_(int* flag, int* ierr){
320   *ierr = MPI_Initialized(flag);
321 }
322
323 void mpi_send_init_(void *buf, int* count, int* datatype, int* dst, int* tag,
324                      int* comm, int* request, int* ierr) {
325   MPI_Request req;
326
327   *ierr = MPI_Send_init(buf, *count, get_datatype(*datatype), *dst, *tag,
328                         get_comm(*comm), &req);
329   if(*ierr == MPI_SUCCESS) {
330     *request = new_request(req);
331   }
332 }
333
334 void mpi_isend_(void *buf, int* count, int* datatype, int* dst,
335                  int* tag, int* comm, int* request, int* ierr) {
336   MPI_Request req;
337   buf = (char *) F2C_BOTTOM(buf);
338   *ierr = MPI_Isend(buf, *count, get_datatype(*datatype), *dst, *tag,
339                     get_comm(*comm), &req);
340   if(*ierr == MPI_SUCCESS) {
341     *request = new_request(req);
342   }
343 }
344
345 void mpi_irsend_(void *buf, int* count, int* datatype, int* dst,
346                  int* tag, int* comm, int* request, int* ierr) {
347   MPI_Request req;
348   buf = (char *) F2C_BOTTOM(buf);
349   *ierr = MPI_Irsend(buf, *count, get_datatype(*datatype), *dst, *tag,
350                     get_comm(*comm), &req);
351   if(*ierr == MPI_SUCCESS) {
352     *request = new_request(req);
353   }
354 }
355
356 void mpi_send_(void* buf, int* count, int* datatype, int* dst,
357                 int* tag, int* comm, int* ierr) {
358    *ierr = MPI_Send(buf, *count, get_datatype(*datatype), *dst, *tag,
359                     get_comm(*comm));
360 }
361
362 void mpi_rsend_(void* buf, int* count, int* datatype, int* dst,
363                 int* tag, int* comm, int* ierr) {
364    *ierr = MPI_Rsend(buf, *count, get_datatype(*datatype), *dst, *tag,
365                     get_comm(*comm));
366 }
367
368 void mpi_sendrecv_(void* sendbuf, int* sendcount, int* sendtype, int* dst,
369                 int* sendtag, void *recvbuf, int* recvcount,
370                 int* recvtype, int* src, int* recvtag,
371                 int* comm, MPI_Status* status, int* ierr) {
372    *ierr = MPI_Sendrecv(sendbuf, *sendcount, get_datatype(*sendtype), *dst,
373        *sendtag, recvbuf, *recvcount,get_datatype(*recvtype), *src, *recvtag,
374        get_comm(*comm), F2C_STATUS_IGNORE(status));
375 }
376
377 void mpi_recv_init_(void *buf, int* count, int* datatype, int* src, int* tag,
378                      int* comm, int* request, int* ierr) {
379   MPI_Request req;
380
381   *ierr = MPI_Recv_init(buf, *count, get_datatype(*datatype), *src, *tag,
382                         get_comm(*comm), &req);
383   if(*ierr == MPI_SUCCESS) {
384     *request = new_request(req);
385   }
386 }
387
388 void mpi_irecv_(void *buf, int* count, int* datatype, int* src, int* tag,
389                  int* comm, int* request, int* ierr) {
390   MPI_Request req;
391   buf = (char *) F2C_BOTTOM(buf);
392   *ierr = MPI_Irecv(buf, *count, get_datatype(*datatype), *src, *tag,
393                     get_comm(*comm), &req);
394   if(*ierr == MPI_SUCCESS) {
395     *request = new_request(req);
396   }
397 }
398
399 void mpi_recv_(void* buf, int* count, int* datatype, int* src,
400                 int* tag, int* comm, MPI_Status* status, int* ierr) {
401    *ierr = MPI_Recv(buf, *count, get_datatype(*datatype), *src, *tag,
402                     get_comm(*comm), status);
403 }
404
405 void mpi_start_(int* request, int* ierr) {
406   MPI_Request req = find_request(*request);
407
408   *ierr = MPI_Start(&req);
409 }
410
411 void mpi_startall_(int* count, int* requests, int* ierr) {
412   MPI_Request* reqs;
413   int i;
414
415   reqs = xbt_new(MPI_Request, *count);
416   for(i = 0; i < *count; i++) {
417     reqs[i] = find_request(requests[i]);
418   }
419   *ierr = MPI_Startall(*count, reqs);
420   free(reqs);
421 }
422
423 void mpi_wait_(int* request, MPI_Status* status, int* ierr) {
424    MPI_Request req = find_request(*request);
425    
426    *ierr = MPI_Wait(&req, F2C_STATUS_IGNORE(status));
427    if(req==MPI_REQUEST_NULL){
428      free_request(*request);
429      *request=MPI_FORTRAN_REQUEST_NULL;
430    }
431 }
432
433 void mpi_waitany_(int* count, int* requests, int* index, MPI_Status* status, int* ierr) {
434   MPI_Request* reqs;
435   int i;
436
437   reqs = xbt_new(MPI_Request, *count);
438   for(i = 0; i < *count; i++) {
439     reqs[i] = find_request(requests[i]);
440   }
441   *ierr = MPI_Waitany(*count, reqs, index, status);
442   if(reqs[*index]==MPI_REQUEST_NULL){
443       free_request(requests[*index]);
444       requests[*index]=MPI_FORTRAN_REQUEST_NULL;
445   }
446   free(reqs);
447 }
448
449 void mpi_waitall_(int* count, int* requests, MPI_Status* status, int* ierr) {
450   MPI_Request* reqs;
451   int i;
452
453   reqs = xbt_new(MPI_Request, *count);
454   for(i = 0; i < *count; i++) {
455     reqs[i] = find_request(requests[i]);
456   }
457   *ierr = MPI_Waitall(*count, reqs, F2C_STATUSES_IGNORE(status));
458   for(i = 0; i < *count; i++) {
459       if(reqs[i]==MPI_REQUEST_NULL){
460           free_request(requests[i]);
461           requests[i]=MPI_FORTRAN_REQUEST_NULL;
462       }
463   }
464
465   free(reqs);
466 }
467
468 void mpi_barrier_(int* comm, int* ierr) {
469   *ierr = MPI_Barrier(get_comm(*comm));
470 }
471
472 void mpi_bcast_(void *buf, int* count, int* datatype, int* root, int* comm, int* ierr) {
473   *ierr = MPI_Bcast(buf, *count, get_datatype(*datatype), *root, get_comm(*comm));
474 }
475
476 void mpi_reduce_(void* sendbuf, void* recvbuf, int* count,
477                   int* datatype, int* op, int* root, int* comm, int* ierr) {
478   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
479   sendbuf = (char *) F2C_BOTTOM(sendbuf);
480   recvbuf = (char *) F2C_BOTTOM(recvbuf);
481   *ierr = MPI_Reduce(sendbuf, recvbuf, *count,
482                      get_datatype(*datatype), get_op(*op), *root, get_comm(*comm));
483 }
484
485 void mpi_allreduce_(void* sendbuf, void* recvbuf, int* count, int* datatype,
486                      int* op, int* comm, int* ierr) {
487   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
488   *ierr = MPI_Allreduce(sendbuf, recvbuf, *count, get_datatype(*datatype),
489                         get_op(*op), get_comm(*comm));
490 }
491
492 void mpi_reduce_scatter_(void* sendbuf, void* recvbuf, int* recvcounts, int* datatype,
493                      int* op, int* comm, int* ierr) {
494   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
495   *ierr = MPI_Reduce_scatter(sendbuf, recvbuf, recvcounts, get_datatype(*datatype),
496                         get_op(*op), get_comm(*comm));
497 }
498
499 void mpi_scatter_(void* sendbuf, int* sendcount, int* sendtype,
500                    void* recvbuf, int* recvcount, int* recvtype, 
501                    int* root, int* comm, int* ierr) {
502   recvbuf = (char *) F2C_IN_PLACE(recvbuf);
503   *ierr = MPI_Scatter(sendbuf, *sendcount, get_datatype(*sendtype),
504                       recvbuf, *recvcount, get_datatype(*recvtype), *root, get_comm(*comm));
505 }
506
507
508 void mpi_scatterv_(void* sendbuf, int* sendcounts, int* displs, int* sendtype,
509                    void* recvbuf, int* recvcount, int* recvtype,
510                    int* root, int* comm, int* ierr) {
511   recvbuf = (char *) F2C_IN_PLACE(recvbuf);
512   *ierr = MPI_Scatterv(sendbuf, sendcounts, displs, get_datatype(*sendtype),
513                       recvbuf, *recvcount, get_datatype(*recvtype), *root, get_comm(*comm));
514 }
515
516 void mpi_gather_(void* sendbuf, int* sendcount, int* sendtype,
517                   void* recvbuf, int* recvcount, int* recvtype,
518                   int* root, int* comm, int* ierr) {
519   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
520   sendbuf = (char *) F2C_BOTTOM(sendbuf);
521   recvbuf = (char *) F2C_BOTTOM(recvbuf);
522   *ierr = MPI_Gather(sendbuf, *sendcount, get_datatype(*sendtype),
523                      recvbuf, *recvcount, get_datatype(*recvtype), *root, get_comm(*comm));
524 }
525
526 void mpi_gatherv_(void* sendbuf, int* sendcount, int* sendtype,
527                   void* recvbuf, int* recvcounts, int* displs, int* recvtype,
528                   int* root, int* comm, int* ierr) {
529   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
530   sendbuf = (char *) F2C_BOTTOM(sendbuf);
531   recvbuf = (char *) F2C_BOTTOM(recvbuf);
532   *ierr = MPI_Gatherv(sendbuf, *sendcount, get_datatype(*sendtype),
533                      recvbuf, recvcounts, displs, get_datatype(*recvtype), *root, get_comm(*comm));
534 }
535
536 void mpi_allgather_(void* sendbuf, int* sendcount, int* sendtype,
537                      void* recvbuf, int* recvcount, int* recvtype,
538                      int* comm, int* ierr) {
539   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
540   *ierr = MPI_Allgather(sendbuf, *sendcount, get_datatype(*sendtype),
541                         recvbuf, *recvcount, get_datatype(*recvtype), get_comm(*comm));
542 }
543
544 void mpi_allgatherv_(void* sendbuf, int* sendcount, int* sendtype,
545                      void* recvbuf, int* recvcounts,int* displs, int* recvtype,
546                      int* comm, int* ierr) {
547   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
548   *ierr = MPI_Allgatherv(sendbuf, *sendcount, get_datatype(*sendtype),
549                         recvbuf, recvcounts, displs, get_datatype(*recvtype), get_comm(*comm));
550 }
551
552 void mpi_scan_(void* sendbuf, void* recvbuf, int* count, int* datatype,
553                 int* op, int* comm, int* ierr) {
554   *ierr = MPI_Scan(sendbuf, recvbuf, *count, get_datatype(*datatype),
555                    get_op(*op), get_comm(*comm));
556 }
557
558 void mpi_alltoall_(void* sendbuf, int* sendcount, int* sendtype,
559                     void* recvbuf, int* recvcount, int* recvtype, int* comm, int* ierr) {
560   *ierr = MPI_Alltoall(sendbuf, *sendcount, get_datatype(*sendtype),
561                        recvbuf, *recvcount, get_datatype(*recvtype), get_comm(*comm));
562 }
563
564 void mpi_alltoallv_(void* sendbuf, int* sendcounts, int* senddisps, int* sendtype,
565                     void* recvbuf, int* recvcounts, int* recvdisps, int* recvtype, int* comm, int* ierr) {
566   *ierr = MPI_Alltoallv(sendbuf, sendcounts, senddisps, get_datatype(*sendtype),
567                        recvbuf, recvcounts, recvdisps, get_datatype(*recvtype), get_comm(*comm));
568 }
569
570 void mpi_test_ (int * request, int *flag, MPI_Status * status, int* ierr){
571   MPI_Request req = find_request(*request);
572   *ierr= MPI_Test(&req, flag, F2C_STATUS_IGNORE(status));
573   if(req==MPI_REQUEST_NULL){
574       free_request(*request);
575       *request=MPI_FORTRAN_REQUEST_NULL;
576   }
577 }
578
579
580 void mpi_testall_ (int* count, int * requests,  int *flag, MPI_Status * statuses, int* ierr){
581   MPI_Request* reqs;
582   int i;
583   reqs = xbt_new(MPI_Request, *count);
584   for(i = 0; i < *count; i++) {
585     reqs[i] = find_request(requests[i]);
586   }
587   *ierr= MPI_Testall(*count, reqs, flag, F2C_STATUSES_IGNORE(statuses));
588   for(i = 0; i < *count; i++) {
589     if(reqs[i]==MPI_REQUEST_NULL){
590         free_request(requests[i]);
591         requests[i]=MPI_FORTRAN_REQUEST_NULL;
592     }
593   }
594 }
595
596
597 void mpi_get_processor_name_(char *name, int *resultlen, int* ierr){
598   *ierr = MPI_Get_processor_name(name, resultlen);
599 }
600
601 void mpi_get_count_(MPI_Status * status, int* datatype, int *count, int* ierr){
602   *ierr = MPI_Get_count(F2C_STATUS_IGNORE(status), get_datatype(*datatype), count);
603 }
604
605 void mpi_attr_get_(int* comm, int* keyval, void* attr_value, int* flag, int* ierr ){
606   *ierr = MPI_Attr_get(get_comm(*comm), *keyval, attr_value, flag);
607 }
608
609 void mpi_type_extent_(int* datatype, MPI_Aint * extent, int* ierr){
610   *ierr= MPI_Type_extent(get_datatype(*datatype),  extent);
611 }
612
613 void mpi_type_commit_(int* datatype,  int* ierr){
614   MPI_Datatype tmp= get_datatype(*datatype);
615   *ierr= MPI_Type_commit(&tmp);
616 }
617
618 void mpi_type_vector_(int* count, int* blocklen, int* stride, int* old_type, int* newtype,  int* ierr){
619   MPI_Datatype tmp;
620   *ierr= MPI_Type_vector(*count, *blocklen, *stride, get_datatype(*old_type), &tmp);
621   if(*ierr == MPI_SUCCESS) {
622     *newtype = new_datatype(tmp);
623   }
624 }
625
626 void mpi_type_create_vector_(int* count, int* blocklen, int* stride, int* old_type, int* newtype,  int* ierr){
627   MPI_Datatype tmp;
628   *ierr= MPI_Type_vector(*count, *blocklen, *stride, get_datatype(*old_type), &tmp);
629   if(*ierr == MPI_SUCCESS) {
630     *newtype = new_datatype(tmp);
631   }
632 }
633
634 void mpi_type_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
635   MPI_Datatype tmp;
636   *ierr= MPI_Type_hvector (*count, *blocklen, *stride, get_datatype(*old_type), &tmp);
637   if(*ierr == MPI_SUCCESS) {
638     *newtype = new_datatype(tmp);
639   }
640 }
641
642 void mpi_type_create_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
643   MPI_Datatype tmp;
644   *ierr= MPI_Type_hvector(*count, *blocklen, *stride, get_datatype(*old_type), &tmp);
645   if(*ierr == MPI_SUCCESS) {
646     *newtype = new_datatype(tmp);
647   }
648 }
649
650 void mpi_type_free_(int* datatype, int* ierr){
651   MPI_Datatype tmp= get_datatype(*datatype);
652   *ierr= MPI_Type_free (&tmp);
653   if(*ierr == MPI_SUCCESS) {
654     free_datatype(*datatype);
655   }
656 }
657
658 void mpi_type_ub_(int* datatype, MPI_Aint * disp, int* ierr){
659   *ierr= MPI_Type_ub(get_datatype(*datatype), disp);
660 }
661
662 void mpi_type_lb_(int* datatype, MPI_Aint * extent, int* ierr){
663   *ierr= MPI_Type_extent(get_datatype(*datatype), extent);
664 }
665
666 void mpi_type_size_(int* datatype, int *size, int* ierr)
667 {
668   *ierr = MPI_Type_size(get_datatype(*datatype), size);
669 }
670
671 void mpi_error_string_(int* errorcode, char* string, int* resultlen, int* ierr){
672   *ierr = MPI_Error_string(*errorcode, string, resultlen);
673 }
674
675 void mpi_win_fence_( int* assert,  int* win, int* ierr){
676   *ierr =  MPI_Win_fence(* assert, *(MPI_Win*)win);
677 }
678
679 void mpi_win_free_( int* win, int* ierr){
680   *ierr =  MPI_Win_free(  (MPI_Win*)win);
681 }
682
683 void mpi_win_create_( int *base, MPI_Aint* size, int* disp_unit, int* info, int* comm, int *win, int* ierr){
684   *ierr =  MPI_Win_create( (void*)base, *size, *disp_unit, *(MPI_Info*)info, get_comm(*comm),(MPI_Win*)win);
685 }
686
687 void mpi_info_create_( int *info, int* ierr){
688   *ierr =  MPI_Info_create( (MPI_Info *)info);
689 }
690
691 void mpi_info_set_( int *info, char *key, char *value, int* ierr){
692   *ierr =  MPI_Info_set( *(MPI_Info *)info, key, value);
693 }
694
695 void mpi_info_free_(int* info, int* ierr){
696   *ierr =  MPI_Info_free((MPI_Info *) info);
697 }
698
699 void mpi_get_( int *origin_addr, int* origin_count, int* origin_datatype, int *target_rank,
700     MPI_Aint* target_disp, int *target_count, int* target_datatype, int* win, int* ierr){
701   *ierr =  MPI_Get( (void*)origin_addr,*origin_count, get_datatype(*origin_datatype),*target_rank,
702       *target_disp, *target_count,get_datatype(*target_datatype), *(MPI_Win *)win);
703 }
704
705
706 //following are automatically generated, and have to be checked
707 void mpi_finalized_ (int * flag, int* ierr){
708
709  *ierr = MPI_Finalized(flag);
710 }
711
712 void mpi_init_thread_ (int* required, int *provided, int* ierr){
713   if(!comm_lookup){
714     comm_lookup = xbt_dict_new_homogeneous(NULL);
715     new_comm(MPI_COMM_WORLD);
716     group_lookup = xbt_dict_new_homogeneous(NULL);
717
718     request_lookup = xbt_dict_new_homogeneous(NULL);
719
720     datatype_lookup = xbt_dict_new_homogeneous(NULL);
721     new_datatype(MPI_BYTE);
722     new_datatype(MPI_CHAR);
723     new_datatype(MPI_INT);
724     new_datatype(MPI_INT);
725     new_datatype(MPI_INT8_T);
726     new_datatype(MPI_INT16_T);
727     new_datatype(MPI_INT32_T);
728     new_datatype(MPI_INT64_T);
729     new_datatype(MPI_FLOAT);
730     new_datatype(MPI_FLOAT);
731     new_datatype(MPI_DOUBLE);
732     new_datatype(MPI_DOUBLE);
733     new_datatype(MPI_C_FLOAT_COMPLEX);
734     new_datatype(MPI_C_DOUBLE_COMPLEX);
735     new_datatype(MPI_2INT);
736     new_datatype(MPI_UINT8_T);
737     new_datatype(MPI_UINT16_T);
738     new_datatype(MPI_UINT32_T);
739     new_datatype(MPI_UINT64_T);
740     new_datatype(MPI_2FLOAT);
741     new_datatype(MPI_2DOUBLE);
742
743     op_lookup = xbt_dict_new_homogeneous( NULL);
744     new_op(MPI_MAX);
745     new_op(MPI_MIN);
746     new_op(MPI_MAXLOC);
747     new_op(MPI_MINLOC);
748     new_op(MPI_SUM);
749     new_op(MPI_PROD);
750     new_op(MPI_LAND);
751     new_op(MPI_LOR);
752     new_op(MPI_LXOR);
753     new_op(MPI_BAND);
754     new_op(MPI_BOR);
755     new_op(MPI_BXOR);
756   }
757   /* smpif2c is responsible for generating a call with the final arguments */
758  *ierr = MPI_Init_thread(NULL, NULL,*required, provided);
759 }
760
761 void mpi_query_thread_ (int *provided, int* ierr){
762
763  *ierr = MPI_Query_thread(provided);
764 }
765
766 void mpi_is_thread_main_ (int *flag, int* ierr){
767
768  *ierr = MPI_Is_thread_main(flag);
769 }
770
771 void mpi_address_ (void *location, MPI_Aint * address, int* ierr){
772
773  *ierr = MPI_Address(location, address);
774 }
775
776 void mpi_get_address_ (void *location, MPI_Aint * address, int* ierr){
777
778  *ierr = MPI_Get_address(location, address);
779 }
780
781 void mpi_type_dup_ (int*  datatype, int* newdatatype, int* ierr){
782  MPI_Datatype tmp;
783  *ierr = MPI_Type_dup(get_datatype(*datatype), &tmp);
784  if(*ierr == MPI_SUCCESS) {
785    *newdatatype = new_datatype(tmp);
786  }
787 }
788
789 void mpi_type_set_name_ (int*  datatype, char * name, int* ierr){
790
791  *ierr = MPI_Type_set_name(get_datatype(*datatype), name);
792 }
793
794 void mpi_type_get_name_ (int*  datatype, char * name, int* len, int* ierr){
795
796  *ierr = MPI_Type_get_name(get_datatype(*datatype),name,len);
797 }
798
799 void mpi_type_get_attr_ (int* type, int* type_keyval, void *attribute_val, int* flag, int* ierr){
800
801  *ierr = MPI_Type_get_attr ( get_datatype(*type), *type_keyval, attribute_val,flag);
802 }
803
804 void mpi_type_set_attr_ (int* type, int* type_keyval, void *attribute_val, int* ierr){
805
806  *ierr = MPI_Type_set_attr ( get_datatype(*type), *type_keyval, attribute_val);
807 }
808
809 void mpi_type_delete_attr_ (int* type, int* type_keyval, int* ierr){
810
811  *ierr = MPI_Type_delete_attr ( get_datatype(*type),  *type_keyval);
812 }
813
814 void mpi_type_create_keyval_ (void* copy_fn, void*  delete_fn, int* keyval, void* extra_state, int* ierr){
815
816  *ierr = MPI_Type_create_keyval((MPI_Type_copy_attr_function*)copy_fn, (MPI_Type_delete_attr_function*) delete_fn,  keyval,  extra_state) ;
817 }
818
819 void mpi_type_free_keyval_ (int* keyval, int* ierr) {
820  *ierr = MPI_Type_free_keyval( keyval);
821 }
822
823 void mpi_pcontrol_ (int* level , int* ierr){
824  *ierr = MPI_Pcontrol(*(const int*)level);
825 }
826
827 void mpi_type_get_extent_ (int* datatype, MPI_Aint * lb, MPI_Aint * extent, int* ierr){
828
829  *ierr = MPI_Type_get_extent(get_datatype(*datatype), lb, extent);
830 }
831
832 void mpi_type_get_true_extent_ (int* datatype, MPI_Aint * lb, MPI_Aint * extent, int* ierr){
833
834  *ierr = MPI_Type_get_true_extent(get_datatype(*datatype), lb, extent);
835 }
836
837 void mpi_op_create_ (void * function, int* commute, int* op, int* ierr){
838   MPI_Op tmp;
839  *ierr = MPI_Op_create((MPI_User_function*)function,* commute, &tmp);
840  if(*ierr == MPI_SUCCESS) {
841    *op = new_op(tmp);
842  }
843 }
844
845 void mpi_op_free_ (int* op, int* ierr){
846   MPI_Op tmp=get_op(*op);
847   *ierr = MPI_Op_free(& tmp);
848   if(*ierr == MPI_SUCCESS) {
849     free_op(*op);
850   }
851 }
852
853 void mpi_group_free_ (int* group, int* ierr){
854  MPI_Group tmp=get_group(*group);
855  *ierr = MPI_Group_free(&tmp);
856  if(*ierr == MPI_SUCCESS) {
857    free_group(*group);
858  }
859 }
860
861 void mpi_group_size_ (int* group, int *size, int* ierr){
862
863  *ierr = MPI_Group_size(get_group(*group), size);
864 }
865
866 void mpi_group_rank_ (int* group, int *rank, int* ierr){
867
868  *ierr = MPI_Group_rank(get_group(*group), rank);
869 }
870
871 void mpi_group_translate_ranks_ (int* group1, int* n, int *ranks1, int* group2, int *ranks2, int* ierr)
872 {
873
874  *ierr = MPI_Group_translate_ranks(get_group(*group1), *n, ranks1, get_group(*group2), ranks2);
875 }
876
877 void mpi_group_compare_ (int* group1, int* group2, int *result, int* ierr){
878
879  *ierr = MPI_Group_compare(get_group(*group1), get_group(*group2), result);
880 }
881
882 void mpi_group_union_ (int* group1, int* group2, int* newgroup, int* ierr){
883  MPI_Group tmp;
884  *ierr = MPI_Group_union(get_group(*group1), get_group(*group2), &tmp);
885  if(*ierr == MPI_SUCCESS) {
886    *newgroup = new_group(tmp);
887  }
888 }
889
890 void mpi_group_intersection_ (int* group1, int* group2, int* newgroup, int* ierr){
891  MPI_Group tmp;
892  *ierr = MPI_Group_intersection(get_group(*group1), get_group(*group2), &tmp);
893  if(*ierr == MPI_SUCCESS) {
894    *newgroup = new_group(tmp);
895  }
896 }
897
898 void mpi_group_difference_ (int* group1, int* group2, int* newgroup, int* ierr){
899  MPI_Group tmp;
900  *ierr = MPI_Group_difference(get_group(*group1), get_group(*group2), &tmp);
901  if(*ierr == MPI_SUCCESS) {
902    *newgroup = new_group(tmp);
903  }
904 }
905
906 void mpi_group_excl_ (int* group, int* n, int *ranks, int* newgroup, int* ierr){
907   MPI_Group tmp;
908  *ierr = MPI_Group_excl(get_group(*group), *n, ranks, &tmp);
909  if(*ierr == MPI_SUCCESS) {
910    *newgroup = new_group(tmp);
911  }
912 }
913
914 void mpi_group_range_incl_ (int* group, int* n, int ranges[][3], int* newgroup, int* ierr)
915 {
916   MPI_Group tmp;
917  *ierr = MPI_Group_range_incl(get_group(*group), *n, ranges, &tmp);
918  if(*ierr == MPI_SUCCESS) {
919    *newgroup = new_group(tmp);
920  }
921 }
922
923 void mpi_group_range_excl_ (int* group, int* n, int ranges[][3], int* newgroup, int* ierr)
924 {
925  MPI_Group tmp;
926  *ierr = MPI_Group_range_excl(get_group(*group), *n, ranges, &tmp);
927  if(*ierr == MPI_SUCCESS) {
928    *newgroup = new_group(tmp);
929  }
930 }
931
932 void mpi_comm_get_attr_ (int* comm, int* comm_keyval, void *attribute_val, int *flag, int* ierr){
933
934  *ierr = MPI_Comm_get_attr (get_comm(*comm), *comm_keyval, attribute_val, flag);
935 }
936
937 void mpi_comm_set_attr_ (int* comm, int* comm_keyval, void *attribute_val, int* ierr){
938
939  *ierr = MPI_Comm_set_attr ( get_comm(*comm), *comm_keyval, attribute_val);
940 }
941
942 void mpi_comm_delete_attr_ (int* comm, int* comm_keyval, int* ierr){
943
944  *ierr = MPI_Comm_delete_attr (get_comm(*comm),  *comm_keyval);
945 }
946
947 void mpi_comm_create_keyval_ (void* copy_fn, void* delete_fn, int* keyval, void* extra_state, int* ierr){
948
949  *ierr = MPI_Comm_create_keyval((MPI_Comm_copy_attr_function*)copy_fn,  (MPI_Comm_delete_attr_function*)delete_fn,  keyval,  extra_state) ;
950 }
951
952 void mpi_comm_free_keyval_ (int* keyval, int* ierr) {
953  *ierr = MPI_Comm_free_keyval( keyval);
954 }
955
956 void mpi_comm_get_name_ (int* comm, char* name, int* len, int* ierr){
957
958  *ierr = MPI_Comm_get_name(get_comm(*comm), name, len);
959 }
960
961 void mpi_comm_compare_ (int* comm1, int* comm2, int *result, int* ierr){
962
963  *ierr = MPI_Comm_compare(get_comm(*comm1), get_comm(*comm2), result);
964 }
965
966 void mpi_comm_disconnect_ (int* comm, int* ierr){
967  MPI_Comm tmp=get_comm(*comm);
968  *ierr = MPI_Comm_disconnect(&tmp);
969  if(*ierr == MPI_SUCCESS) {
970    free_comm(*comm);
971  }
972 }
973
974 void mpi_request_free_ (int* request, int* ierr){
975   MPI_Request tmp=find_request(*request);
976  *ierr = MPI_Request_free(&tmp);
977  if(*ierr == MPI_SUCCESS) {
978    free_request(*request);
979  }
980 }
981
982 void mpi_sendrecv_replace_ (void *buf, int* count, int* datatype, int* dst, int* sendtag, int* src, int* recvtag,
983  int* comm, MPI_Status* status, int* ierr)
984 {
985
986  *ierr = MPI_Sendrecv_replace(buf, *count, get_datatype(*datatype), *dst, *sendtag, *src,
987  *recvtag, get_comm(*comm), F2C_STATUS_IGNORE(status));
988 }
989
990 void mpi_testany_ (int* count, int* requests, int *index, int *flag, MPI_Status* status, int* ierr)
991 {
992   MPI_Request* reqs;
993   int i;
994
995   reqs = xbt_new(MPI_Request, *count);
996   for(i = 0; i < *count; i++) {
997     reqs[i] = find_request(requests[i]);
998   }
999   *ierr = MPI_Testany(*count, reqs, index, flag, F2C_STATUS_IGNORE(status));
1000   if(*index!=MPI_UNDEFINED)
1001   if(reqs[*index]==MPI_REQUEST_NULL){
1002     free_request(requests[*index]);
1003     requests[*index]=MPI_FORTRAN_REQUEST_NULL;
1004   }
1005   free(reqs);
1006 }
1007
1008 void mpi_waitsome_ (int* incount, int* requests, int *outcount, int *indices, MPI_Status* status, int* ierr)
1009 {
1010   MPI_Request* reqs;
1011   int i;
1012
1013   reqs = xbt_new(MPI_Request, *incount);
1014   for(i = 0; i < *incount; i++) {
1015     reqs[i] = find_request(requests[i]);
1016   }
1017   *ierr = MPI_Waitsome(*incount, reqs, outcount, indices, status);
1018   for(i=0;i<*outcount;i++){
1019     if(reqs[indices[i]]==MPI_REQUEST_NULL){
1020         free_request(requests[indices[i]]);
1021         requests[indices[i]]=MPI_FORTRAN_REQUEST_NULL;
1022     }
1023   }
1024   free(reqs);
1025 }
1026
1027 void mpi_reduce_local_ (void *inbuf, void *inoutbuf, int* count, int* datatype, int* op, int* ierr){
1028
1029  *ierr = MPI_Reduce_local(inbuf, inoutbuf, *count, get_datatype(*datatype), get_op(*op));
1030 }
1031
1032 void mpi_reduce_scatter_block_ (void *sendbuf, void *recvbuf, int* recvcount, int* datatype, int* op, int* comm, int* ierr)
1033 {
1034   sendbuf = (char *) F2C_IN_PLACE(sendbuf);
1035  *ierr = MPI_Reduce_scatter_block(sendbuf, recvbuf, *recvcount, get_datatype(*datatype), get_op(*op), get_comm(*comm));
1036 }
1037
1038 void mpi_pack_size_ (int* incount, int* datatype, int* comm, int* size, int* ierr) {
1039  *ierr = MPI_Pack_size(*incount, get_datatype(*datatype), get_comm(*comm), size);
1040 }
1041
1042 void mpi_cart_coords_ (int* comm, int* rank, int* maxdims, int* coords, int* ierr) {
1043  *ierr = MPI_Cart_coords(get_comm(*comm), *rank, *maxdims, coords);
1044 }
1045
1046 void mpi_cart_create_ (int* comm_old, int* ndims, int* dims, int* periods, int* reorder, int*  comm_cart, int* ierr) {
1047   MPI_Comm tmp;
1048  *ierr = MPI_Cart_create(get_comm(*comm_old), *ndims, dims, periods, *reorder, &tmp);
1049  if(*ierr == MPI_SUCCESS) {
1050    *comm_cart = new_comm(tmp);
1051  }
1052 }
1053
1054 void mpi_cart_get_ (int* comm, int* maxdims, int* dims, int* periods, int* coords, int* ierr) {
1055  *ierr = MPI_Cart_get(get_comm(*comm), *maxdims, dims, periods, coords);
1056 }
1057
1058 void mpi_cart_map_ (int* comm_old, int* ndims, int* dims, int* periods, int* newrank, int* ierr) {
1059  *ierr = MPI_Cart_map(get_comm(*comm_old), *ndims, dims, periods, newrank);
1060 }
1061
1062 void mpi_cart_rank_ (int* comm, int* coords, int* rank, int* ierr) {
1063  *ierr = MPI_Cart_rank(get_comm(*comm), coords, rank);
1064 }
1065
1066 void mpi_cart_shift_ (int* comm, int* direction, int* displ, int* source, int* dest, int* ierr) {
1067  *ierr = MPI_Cart_shift(get_comm(*comm), *direction, *displ, source, dest);
1068 }
1069
1070 void mpi_cart_sub_ (int* comm, int* remain_dims, int*  comm_new, int* ierr) {
1071  MPI_Comm tmp;
1072  *ierr = MPI_Cart_sub(get_comm(*comm), remain_dims, &tmp);
1073  if(*ierr == MPI_SUCCESS) {
1074    *comm_new = new_comm(tmp);
1075  }
1076 }
1077
1078 void mpi_cartdim_get_ (int* comm, int* ndims, int* ierr) {
1079  *ierr = MPI_Cartdim_get(get_comm(*comm), ndims);
1080 }
1081
1082 void mpi_graph_create_ (int* comm_old, int* nnodes, int* index, int* edges, int* reorder, int*  comm_graph, int* ierr) {
1083   MPI_Comm tmp;
1084  *ierr = MPI_Graph_create(get_comm(*comm_old), *nnodes, index, edges, *reorder, &tmp);
1085  if(*ierr == MPI_SUCCESS) {
1086    *comm_graph = new_comm(tmp);
1087  }
1088 }
1089
1090 void mpi_graph_get_ (int* comm, int* maxindex, int* maxedges, int* index, int* edges, int* ierr) {
1091  *ierr = MPI_Graph_get(get_comm(*comm), *maxindex, *maxedges, index, edges);
1092 }
1093
1094 void mpi_graph_map_ (int* comm_old, int* nnodes, int* index, int* edges, int* newrank, int* ierr) {
1095  *ierr = MPI_Graph_map(get_comm(*comm_old), *nnodes, index, edges, newrank);
1096 }
1097
1098 void mpi_graph_neighbors_ (int* comm, int* rank, int* maxneighbors, int* neighbors, int* ierr) {
1099  *ierr = MPI_Graph_neighbors(get_comm(*comm), *rank, *maxneighbors, neighbors);
1100 }
1101
1102 void mpi_graph_neighbors_count_ (int* comm, int* rank, int* nneighbors, int* ierr) {
1103  *ierr = MPI_Graph_neighbors_count(get_comm(*comm), *rank, nneighbors);
1104 }
1105
1106 void mpi_graphdims_get_ (int* comm, int* nnodes, int* nedges, int* ierr) {
1107  *ierr = MPI_Graphdims_get(get_comm(*comm), nnodes, nedges);
1108 }
1109
1110 void mpi_topo_test_ (int* comm, int* top_type, int* ierr) {
1111  *ierr = MPI_Topo_test(get_comm(*comm), top_type);
1112 }
1113
1114 void mpi_error_class_ (int* errorcode, int* errorclass, int* ierr) {
1115  *ierr = MPI_Error_class(*errorcode, errorclass);
1116 }
1117
1118 void mpi_errhandler_create_ (void* function, void* errhandler, int* ierr) {
1119  *ierr = MPI_Errhandler_create((MPI_Handler_function*)function, (MPI_Errhandler*)errhandler);
1120 }
1121
1122 void mpi_errhandler_free_ (void* errhandler, int* ierr) {
1123  *ierr = MPI_Errhandler_free((MPI_Errhandler*)errhandler);
1124 }
1125
1126 void mpi_errhandler_get_ (int* comm, void* errhandler, int* ierr) {
1127  *ierr = MPI_Errhandler_get(get_comm(*comm), (MPI_Errhandler*) errhandler);
1128 }
1129
1130 void mpi_errhandler_set_ (int* comm, void* errhandler, int* ierr) {
1131  *ierr = MPI_Errhandler_set(get_comm(*comm), *(MPI_Errhandler*)errhandler);
1132 }
1133
1134 void mpi_comm_set_errhandler_ (int* comm, void* errhandler, int* ierr) {
1135  *ierr = MPI_Errhandler_set(get_comm(*comm), *(MPI_Errhandler*)errhandler);
1136 }
1137
1138 void mpi_comm_get_errhandler_ (int* comm, void* errhandler, int* ierr) {
1139  *ierr = MPI_Errhandler_set(get_comm(*comm), (MPI_Errhandler*)errhandler);
1140 }
1141
1142 void mpi_type_contiguous_ (int* count, int* old_type, int*  newtype, int* ierr) {
1143   MPI_Datatype tmp;
1144   *ierr = MPI_Type_contiguous(*count, get_datatype(*old_type), &tmp);
1145   if(*ierr == MPI_SUCCESS) {
1146     *newtype = new_datatype(tmp);
1147   }
1148 }
1149
1150 void mpi_cancel_ (int* request, int* ierr) {
1151   MPI_Request tmp=find_request(*request);
1152  *ierr = MPI_Cancel(&tmp);
1153  if(*ierr == MPI_SUCCESS) {
1154    free_request(*request);
1155  }
1156 }
1157
1158 void mpi_buffer_attach_ (void* buffer, int* size, int* ierr) {
1159  *ierr = MPI_Buffer_attach(buffer, *size);
1160 }
1161
1162 void mpi_buffer_detach_ (void* buffer, int* size, int* ierr) {
1163  *ierr = MPI_Buffer_detach(buffer, size);
1164 }
1165
1166 void mpi_testsome_ (int* incount, int*  requests, int* outcount, int* indices, MPI_Status*  statuses, int* ierr) {
1167   MPI_Request* reqs;
1168   int i;
1169
1170   reqs = xbt_new(MPI_Request, *incount);
1171   for(i = 0; i < *incount; i++) {
1172     reqs[i] = find_request(requests[i]);
1173     indices[i]=0;
1174   }
1175   *ierr = MPI_Testsome(*incount, reqs, outcount, indices, F2C_STATUSES_IGNORE(statuses));
1176   for(i=0;i<*incount;i++){
1177     if(indices[i]){
1178       if(reqs[indices[i]]==MPI_REQUEST_NULL){
1179           free_request(requests[indices[i]]);
1180           requests[indices[i]]=MPI_FORTRAN_REQUEST_NULL;
1181       }
1182     }
1183   }
1184   free(reqs);
1185 }
1186
1187 void mpi_comm_test_inter_ (int* comm, int* flag, int* ierr) {
1188  *ierr = MPI_Comm_test_inter(get_comm(*comm), flag);
1189 }
1190
1191 void mpi_unpack_ (void* inbuf, int* insize, int* position, void* outbuf, int* outcount, int* type, int* comm, int* ierr) {
1192  *ierr = MPI_Unpack(inbuf, *insize, position, outbuf, *outcount, get_datatype(*type), get_comm(*comm));
1193 }
1194
1195 void mpi_pack_external_size_ (char *datarep, int* incount, int* datatype, MPI_Aint *size, int* ierr){
1196  *ierr = MPI_Pack_external_size(datarep, *incount, get_datatype(*datatype), size);
1197 }
1198
1199 void mpi_pack_external_ (char *datarep, void *inbuf, int* incount, int* datatype, void *outbuf, MPI_Aint* outcount, MPI_Aint *position, int* ierr){
1200  *ierr = MPI_Pack_external(datarep, inbuf, *incount, get_datatype(*datatype), outbuf, *outcount, position);
1201 }
1202
1203 void mpi_unpack_external_ ( char *datarep, void *inbuf, MPI_Aint* insize, MPI_Aint *position, void *outbuf, int* outcount, int* datatype, int* ierr){
1204  *ierr = MPI_Unpack_external( datarep, inbuf, *insize, position, outbuf, *outcount, get_datatype(*datatype));
1205 }
1206
1207 void mpi_type_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1208   MPI_Datatype tmp;
1209   *ierr = MPI_Type_hindexed(*count, blocklens, indices, get_datatype(*old_type), &tmp);
1210   if(*ierr == MPI_SUCCESS) {
1211     *newtype = new_datatype(tmp);
1212   }
1213 }
1214
1215 void mpi_type_create_hindexed_ (int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1216   MPI_Datatype tmp;
1217   *ierr = MPI_Type_create_hindexed(*count, blocklens, indices, get_datatype(*old_type), &tmp);
1218   if(*ierr == MPI_SUCCESS) {
1219     *newtype = new_datatype(tmp);
1220   }
1221 }
1222
1223 void mpi_type_create_hindexed_block_ (int* count, int* blocklength, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
1224   MPI_Datatype tmp;
1225   *ierr = MPI_Type_create_hindexed_block(*count, *blocklength, indices, get_datatype(*old_type), &tmp);
1226   if(*ierr == MPI_SUCCESS) {
1227     *newtype = new_datatype(tmp);
1228   }
1229 }
1230
1231 void mpi_type_indexed_ (int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr) {
1232   MPI_Datatype tmp;
1233   *ierr = MPI_Type_indexed(*count, blocklens, indices, get_datatype(*old_type), &tmp);
1234   if(*ierr == MPI_SUCCESS) {
1235     *newtype = new_datatype(tmp);
1236   }
1237 }
1238
1239 void mpi_type_create_indexed_block_ (int* count, int* blocklength, int* indices,  int* old_type,  int*newtype, int* ierr){
1240   MPI_Datatype tmp;
1241   *ierr = MPI_Type_create_indexed_block(*count, *blocklength, indices, get_datatype(*old_type), &tmp);
1242   if(*ierr == MPI_SUCCESS) {
1243     *newtype = new_datatype(tmp);
1244   }
1245 }
1246
1247 void mpi_type_struct_ (int* count, int* blocklens, MPI_Aint* indices, int* old_types, int*  newtype, int* ierr) {
1248   MPI_Datatype tmp;
1249   *ierr = MPI_Type_struct(*count, blocklens, indices, (MPI_Datatype*)old_types, &tmp);
1250   if(*ierr == MPI_SUCCESS) {
1251     *newtype = new_datatype(tmp);
1252   }
1253 }
1254
1255 void mpi_type_create_struct_ (int* count, int* blocklens, MPI_Aint* indices, int*  old_types, int*  newtype, int* ierr) {
1256   MPI_Datatype tmp;
1257   *ierr = MPI_Type_create_struct(*count, blocklens, indices, (MPI_Datatype*)old_types, &tmp);
1258   if(*ierr == MPI_SUCCESS) {
1259     *newtype = new_datatype(tmp);
1260   }
1261 }
1262
1263 void mpi_ssend_ (void* buf, int* count, int* datatype, int* dest, int* tag, int* comm, int* ierr) {
1264  *ierr = MPI_Ssend(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm));
1265 }
1266
1267 void mpi_ssend_init_ (void* buf, int* count, int* datatype, int* dest, int* tag, int* comm, int* request, int* ierr) {
1268   MPI_Request tmp;
1269  *ierr = MPI_Ssend_init(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm), &tmp);
1270  if(*ierr == MPI_SUCCESS) {
1271    *request = new_request(tmp);
1272  }
1273 }
1274
1275 void mpi_intercomm_create_ (int* local_comm, int *local_leader, int* peer_comm, int* remote_leader, int* tag, int*  comm_out, int* ierr) {
1276   MPI_Comm tmp;
1277   *ierr = MPI_Intercomm_create(get_comm(*local_comm), *local_leader,get_comm(*peer_comm), *remote_leader, *tag, &tmp);
1278   if(*ierr == MPI_SUCCESS) {
1279     *comm_out = new_comm(tmp);
1280   }
1281 }
1282
1283 void mpi_intercomm_merge_ (int* comm, int* high, int*  comm_out, int* ierr) {
1284  MPI_Comm tmp;
1285  *ierr = MPI_Intercomm_merge(get_comm(*comm), *high, &tmp);
1286  if(*ierr == MPI_SUCCESS) {
1287    *comm_out = new_comm(tmp);
1288  }
1289 }
1290
1291 void mpi_bsend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int* ierr) {
1292  *ierr = MPI_Bsend(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm));
1293 }
1294
1295 void mpi_bsend_init_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1296   MPI_Request tmp;
1297   *ierr = MPI_Bsend_init(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm), &tmp);
1298  if(*ierr == MPI_SUCCESS) {
1299    *request = new_request(tmp);
1300  }
1301 }
1302
1303 void mpi_ibsend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1304   MPI_Request tmp;
1305   *ierr = MPI_Ibsend(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm), &tmp);
1306  if(*ierr == MPI_SUCCESS) {
1307    *request = new_request(tmp);
1308  }
1309 }
1310
1311 void mpi_comm_remote_group_ (int* comm, int*  group, int* ierr) {
1312   MPI_Group tmp;
1313  *ierr = MPI_Comm_remote_group(get_comm(*comm), &tmp);
1314  if(*ierr == MPI_SUCCESS) {
1315    *group = new_group(tmp);
1316  }
1317 }
1318
1319 void mpi_comm_remote_size_ (int* comm, int* size, int* ierr) {
1320  *ierr = MPI_Comm_remote_size(get_comm(*comm), size);
1321 }
1322
1323 void mpi_issend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1324   MPI_Request tmp;
1325   *ierr = MPI_Issend(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm), &tmp);
1326  if(*ierr == MPI_SUCCESS) {
1327    *request = new_request(tmp);
1328  }
1329 }
1330
1331 void mpi_probe_ (int* source, int* tag, int* comm, MPI_Status*  status, int* ierr) {
1332  *ierr = MPI_Probe(*source, *tag, get_comm(*comm), F2C_STATUS_IGNORE(status));
1333 }
1334
1335 void mpi_attr_delete_ (int* comm, int* keyval, int* ierr) {
1336  *ierr = MPI_Attr_delete(get_comm(*comm), *keyval);
1337 }
1338
1339 void mpi_attr_put_ (int* comm, int* keyval, void* attr_value, int* ierr) {
1340  *ierr = MPI_Attr_put(get_comm(*comm), *keyval, attr_value);
1341 }
1342
1343 void mpi_rsend_init_ (void* buf, int* count, int* datatype, int *dest, int* tag, int* comm, int*  request, int* ierr) {
1344   MPI_Request tmp;
1345   *ierr = MPI_Rsend_init(buf, *count, get_datatype(*datatype), *dest, *tag, get_comm(*comm), &tmp);
1346  if(*ierr == MPI_SUCCESS) {
1347    *request = new_request(tmp);
1348  }
1349 }
1350
1351 void mpi_keyval_create_ (void* copy_fn, void* delete_fn, int* keyval, void* extra_state, int* ierr) {
1352  *ierr = MPI_Keyval_create((MPI_Copy_function*)copy_fn, (MPI_Delete_function*)delete_fn, keyval, extra_state);
1353 }
1354
1355 void mpi_keyval_free_ (int* keyval, int* ierr) {
1356  *ierr = MPI_Keyval_free(keyval);
1357 }
1358
1359 void mpi_test_cancelled_ (MPI_Status*  status, int* flag, int* ierr) {
1360  *ierr = MPI_Test_cancelled(status, flag);
1361 }
1362
1363 void mpi_pack_ (void* inbuf, int* incount, int* type, void* outbuf, int* outcount, int* position, int* comm, int* ierr) {
1364  *ierr = MPI_Pack(inbuf, *incount, get_datatype(*type), outbuf, *outcount, position, get_comm(*comm));
1365 }
1366
1367 void mpi_get_elements_ (MPI_Status*  status, int* datatype, int* elements, int* ierr) {
1368  *ierr = MPI_Get_elements(status, get_datatype(*datatype), elements);
1369 }
1370
1371 void mpi_dims_create_ (int* nnodes, int* ndims, int* dims, int* ierr) {
1372  *ierr = MPI_Dims_create(*nnodes, *ndims, dims);
1373 }
1374
1375 void mpi_iprobe_ (int* source, int* tag, int* comm, int* flag, MPI_Status*  status, int* ierr) {
1376  *ierr = MPI_Iprobe(*source, *tag, get_comm(*comm), flag, status);
1377 }
1378
1379 void mpi_type_get_envelope_ ( int* datatype, int *num_integers, int *num_addresses, int *num_datatypes, int *combiner, int* ierr){
1380
1381  *ierr = MPI_Type_get_envelope(  get_datatype(*datatype), num_integers,
1382  num_addresses, num_datatypes, combiner);
1383 }
1384
1385 void mpi_type_get_contents_ (int* datatype, int* max_integers, int* max_addresses, int* max_datatypes, int* array_of_integers, MPI_Aint* array_of_addresses,
1386  int* array_of_datatypes, int* ierr){
1387  *ierr = MPI_Type_get_contents(get_datatype(*datatype), *max_integers, *max_addresses,*max_datatypes, array_of_integers, array_of_addresses, (MPI_Datatype*)array_of_datatypes);
1388 }
1389
1390 void mpi_type_create_darray_ (int* size, int* rank, int* ndims, int* array_of_gsizes, int* array_of_distribs, int* array_of_dargs, int* array_of_psizes,
1391  int* order, int* oldtype, int*newtype, int* ierr) {
1392   MPI_Datatype tmp;
1393   *ierr = MPI_Type_create_darray(*size, *rank, *ndims,  array_of_gsizes,
1394   array_of_distribs,  array_of_dargs,  array_of_psizes,
1395   *order,  get_datatype(*oldtype), &tmp) ;
1396   if(*ierr == MPI_SUCCESS) {
1397     *newtype = new_datatype(tmp);
1398   }
1399 }
1400
1401 void mpi_type_create_resized_ (int* oldtype,MPI_Aint* lb, MPI_Aint* extent, int*newtype, int* ierr){
1402   MPI_Datatype tmp;
1403   *ierr = MPI_Type_create_resized(get_datatype(*oldtype),*lb, *extent, &tmp);
1404   if(*ierr == MPI_SUCCESS) {
1405     *newtype = new_datatype(tmp);
1406   }
1407 }
1408
1409 void mpi_type_create_subarray_ (int* ndims,int *array_of_sizes, int *array_of_subsizes, int *array_of_starts, int* order, int* oldtype, int*newtype, int* ierr){
1410   MPI_Datatype tmp;
1411   *ierr = MPI_Type_create_subarray(*ndims,array_of_sizes, array_of_subsizes, array_of_starts, *order, get_datatype(*oldtype), &tmp);
1412   if(*ierr == MPI_SUCCESS) {
1413     *newtype = new_datatype(tmp);
1414   }
1415 }
1416
1417 void mpi_type_match_size_ (int* typeclass,int* size,int* datatype, int* ierr){
1418   MPI_Datatype tmp;
1419   *ierr = MPI_Type_match_size(*typeclass,*size,&tmp);
1420   if(*ierr == MPI_SUCCESS) {
1421     *datatype = new_datatype(tmp);
1422   }
1423 }
1424
1425 void mpi_alltoallw_ ( void *sendbuf, int *sendcnts, int *sdispls, int* sendtypes, void *recvbuf, int *recvcnts, int *rdispls, int* recvtypes,
1426  int* comm, int* ierr){
1427  *ierr = MPI_Alltoallw( sendbuf, sendcnts, sdispls, (MPI_Datatype*) sendtypes, recvbuf, recvcnts, rdispls, (MPI_Datatype*)recvtypes, get_comm(*comm));
1428 }
1429
1430 void mpi_exscan_ (void *sendbuf, void *recvbuf, int* count, int* datatype, int* op, int* comm, int* ierr){
1431  *ierr = MPI_Exscan(sendbuf, recvbuf, *count, get_datatype(*datatype), get_op(*op), get_comm(*comm));
1432 }
1433
1434 void mpi_comm_set_name_ (int* comm, char* name, int* ierr){
1435  *ierr = MPI_Comm_set_name (get_comm(*comm), name);
1436 }
1437
1438 void mpi_comm_dup_with_info_ (int* comm, int* info, int* newcomm, int* ierr){
1439   MPI_Comm tmp;
1440   *ierr = MPI_Comm_dup_with_info(get_comm(*comm),*(MPI_Info*)info,&tmp);
1441   if(*ierr == MPI_SUCCESS) {
1442     *newcomm = new_comm(tmp);
1443   }
1444 }
1445
1446 void mpi_comm_split_type_ (int* comm, int* split_type, int* key, int* info, int* newcomm, int* ierr){
1447   MPI_Comm tmp;
1448   *ierr = MPI_Comm_split_type(get_comm(*comm), *split_type, *key, *(MPI_Info*)info, &tmp);
1449   if(*ierr == MPI_SUCCESS) {
1450     *newcomm = new_comm(tmp);
1451   }
1452 }
1453
1454 void mpi_comm_set_info_ (int* comm, int* info, int* ierr){
1455  *ierr = MPI_Comm_set_info (get_comm(*comm), *(MPI_Info*)info);
1456 }
1457
1458 void mpi_comm_get_info_ (int* comm, int* info, int* ierr){
1459  *ierr = MPI_Comm_get_info (get_comm(*comm), (MPI_Info*)info);
1460 }
1461
1462 void mpi_info_get_ (int* info,char *key,int* valuelen, char *value, int *flag, int* ierr){
1463  *ierr = MPI_Info_get(*(MPI_Info*)info,key,*valuelen, value, flag);
1464 }
1465
1466 void mpi_comm_create_errhandler_ ( void *function, void *errhandler, int* ierr){
1467  *ierr = MPI_Comm_create_errhandler( (MPI_Comm_errhandler_fn*) function, (MPI_Errhandler*)errhandler);
1468 }
1469
1470 void mpi_add_error_class_ ( int *errorclass, int* ierr){
1471  *ierr = MPI_Add_error_class( errorclass);
1472 }
1473
1474 void mpi_add_error_code_ (  int* errorclass, int *errorcode, int* ierr){
1475  *ierr = MPI_Add_error_code(*errorclass, errorcode);
1476 }
1477
1478 void mpi_add_error_string_ ( int* errorcode, char *string, int* ierr){
1479  *ierr = MPI_Add_error_string(*errorcode, string);
1480 }
1481
1482 void mpi_comm_call_errhandler_ (int* comm,int* errorcode, int* ierr){
1483  *ierr = MPI_Comm_call_errhandler(get_comm(*comm), *errorcode);
1484 }
1485
1486 void mpi_info_dup_ (int* info, int* newinfo, int* ierr){
1487  *ierr = MPI_Info_dup(*(MPI_Info*)info, (MPI_Info*)newinfo);
1488 }
1489
1490 void mpi_info_get_valuelen_ ( int* info, char *key, int *valuelen, int *flag, int* ierr){
1491  *ierr = MPI_Info_get_valuelen( *(MPI_Info*)info, key, valuelen, flag);
1492 }
1493
1494 void mpi_info_delete_ (int* info, char *key, int* ierr){
1495  *ierr = MPI_Info_delete(*(MPI_Info*)info, key);
1496 }
1497
1498 void mpi_info_get_nkeys_ ( int* info, int *nkeys, int* ierr){
1499  *ierr = MPI_Info_get_nkeys(  *(MPI_Info*)info, nkeys);
1500 }
1501
1502 void mpi_info_get_nthkey_ ( int* info, int* n, char *key, int* ierr){
1503  *ierr = MPI_Info_get_nthkey( *(MPI_Info*)info, *n, key);
1504 }
1505
1506 void mpi_get_version_ (int *version,int *subversion, int* ierr){
1507  *ierr = MPI_Get_version (version,subversion);
1508 }
1509
1510 void mpi_get_library_version_ (char *version,int *len, int* ierr){
1511  *ierr = MPI_Get_library_version (version,len);
1512 }
1513
1514 void mpi_request_get_status_ ( int* request, int *flag, MPI_Status* status, int* ierr){
1515  *ierr = MPI_Request_get_status( find_request(*request), flag, status);
1516 }
1517
1518 void mpi_grequest_start_ ( void *query_fn, void *free_fn, void *cancel_fn, void *extra_state, int*request, int* ierr){
1519   MPI_Request tmp;
1520   *ierr = MPI_Grequest_start( (MPI_Grequest_query_function*)query_fn, (MPI_Grequest_free_function*)free_fn, (MPI_Grequest_cancel_function*)cancel_fn, extra_state, &tmp);
1521  if(*ierr == MPI_SUCCESS) {
1522    *request = new_request(tmp);
1523  }
1524 }
1525
1526 void mpi_grequest_complete_ ( int* request, int* ierr){
1527  *ierr = MPI_Grequest_complete( find_request(*request));
1528 }
1529
1530 void mpi_status_set_cancelled_ (MPI_Status* status,int* flag, int* ierr){
1531  *ierr = MPI_Status_set_cancelled(status,*flag);
1532 }
1533
1534 void mpi_status_set_elements_ ( MPI_Status* status, int* datatype, int* count, int* ierr){
1535  *ierr = MPI_Status_set_elements( status, get_datatype(*datatype), *count);
1536 }
1537
1538 void mpi_comm_connect_ ( char *port_name, int* info, int* root, int* comm, int*newcomm, int* ierr){
1539   MPI_Comm tmp;
1540   *ierr = MPI_Comm_connect( port_name, *(MPI_Info*)info, *root, get_comm(*comm), &tmp);
1541   if(*ierr == MPI_SUCCESS) {
1542     *newcomm = new_comm(tmp);
1543   }
1544 }
1545
1546 void mpi_publish_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1547  *ierr = MPI_Publish_name( service_name, *(MPI_Info*)info, port_name);
1548 }
1549
1550 void mpi_unpublish_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1551  *ierr = MPI_Unpublish_name( service_name, *(MPI_Info*)info, port_name);
1552 }
1553
1554 void mpi_lookup_name_ ( char *service_name, int* info, char *port_name, int* ierr){
1555  *ierr = MPI_Lookup_name( service_name, *(MPI_Info*)info, port_name);
1556 }
1557
1558 void mpi_comm_join_ ( int* fd, int* intercomm, int* ierr){
1559   MPI_Comm tmp;
1560   *ierr = MPI_Comm_join( *fd, &tmp);
1561   if(*ierr == MPI_SUCCESS) {
1562     *intercomm = new_comm(tmp);
1563   }
1564 }
1565
1566 void mpi_open_port_ ( int* info, char *port_name, int* ierr){
1567  *ierr = MPI_Open_port( *(MPI_Info*)info,port_name);
1568 }
1569
1570 void mpi_close_port_ ( char *port_name, int* ierr){
1571  *ierr = MPI_Close_port( port_name);
1572 }
1573
1574 void mpi_comm_accept_ ( char *port_name, int* info, int* root, int* comm, int*newcomm, int* ierr){
1575   MPI_Comm tmp;
1576   *ierr = MPI_Comm_accept( port_name, *(MPI_Info*)info, *root, get_comm(*comm), &tmp);
1577   if(*ierr == MPI_SUCCESS) {
1578     *newcomm = new_comm(tmp);
1579   }
1580 }
1581
1582 void mpi_comm_spawn_ ( char *command, char *argv, int* maxprocs, int* info, int* root, int* comm, int* intercomm, int* array_of_errcodes, int* ierr){
1583   MPI_Comm tmp;
1584   *ierr = MPI_Comm_spawn( command, NULL, *maxprocs, *(MPI_Info*)info, *root, get_comm(*comm), &tmp, array_of_errcodes);
1585   if(*ierr == MPI_SUCCESS) {
1586     *intercomm = new_comm(tmp);
1587   }
1588 }
1589
1590 void mpi_comm_spawn_multiple_ ( int* count, char *array_of_commands, char** array_of_argv, int* array_of_maxprocs, int* array_of_info, int* root,
1591  int* comm, int* intercomm, int* array_of_errcodes, int* ierr){
1592  MPI_Comm tmp;
1593  *ierr = MPI_Comm_spawn_multiple(* count, &array_of_commands, &array_of_argv, array_of_maxprocs,
1594  (MPI_Info*)array_of_info, *root, get_comm(*comm), &tmp, array_of_errcodes);
1595  if(*ierr == MPI_SUCCESS) {
1596    *intercomm = new_comm(tmp);
1597  }
1598 }
1599
1600 void mpi_comm_get_parent_ ( int* parent, int* ierr){
1601   MPI_Comm tmp;
1602   *ierr = MPI_Comm_get_parent( &tmp);
1603   if(*ierr == MPI_SUCCESS) {
1604     *parent = new_comm(tmp);
1605   }
1606 }