~james-page/ubuntu/precise/openmpi1.5/new

« back to all changes in this revision

Viewing changes to ompi/contrib/vt/vt/vtlib/vt_fmpiwrap.c

  • Committer: Bazaar Package Importer
  • Author(s): Manuel Prinz
  • Date: 2009-04-23 14:01:21 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090423140121-vsi3pqa6g30j4qiy
Tags: 1.3.2-1
* New upstream release. (Closes: #520597, #515116)
  - Manpage and VampirTrace patches removed, included upstream.
* Fixed build issues on Alpha. Huge thanks to Arthur Loiret for providing
  access to his machines for testing! (Closes: #510845, #517543)
* Fixed build issues on Sparc. (Closes: #519725)
* Fixed manpage-has-errors-from-man lintian warnings.
* Faked SONAME change by renaming library package. (Closes: #512616)
* Made libopenmpi-dev depend on libibverbs-dev. (Closes: #522153)
* Support for "nocheck" build option in debian/rules.
* Updated Standards-Version in debian/control.
* Changed section of libopenmpi-dbg to "debug".
* Updated debian/copyright.

* Dirk Eddelbuettel removed himself from Uploaders. The team thanks Dirk
  for his long-term contribution and effort to get Open MPI back to life.
  I personally thank Dirk for encouraging me to become a Debian Developer
  and his support and mentoring on that way and beyond.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
                           (MPI_Fint* ierr),
38
38
                           (ierr))
39
39
 
 
40
#if defined(HAVE_MPITHRD) && HAVE_MPITHRD
 
41
 
 
42
/* -- MPI_Init_thread -- */
 
43
 
 
44
DEF_FMPI_FUNC( vt_mpi_init_thread_f(MPI_Fint* required, MPI_Fint* provided,
 
45
                                    MPI_Fint* ierr) ) {
 
46
  *ierr = MPI_Init_thread(0, (char***)0, *required, provided);
 
47
} VT_GENERATE_F77_BINDINGS(mpi_init_thread, MPI_INIT_THREAD,
 
48
                           vt_mpi_init_thread_f,
 
49
                           (MPI_Fint* required, MPI_Fint* provided, MPI_Fint* ierr),
 
50
                           (required, provided, ierr))
 
51
 
 
52
#endif /* HAVE_MPITHRD */
 
53
 
40
54
/* -- MPI_Finalize -- */
41
55
 
42
56
DEF_FMPI_FUNC( vt_mpi_finalize_f(MPI_Fint* ierr) ) {
1158
1172
                           (MPI_Fint* ierr),
1159
1173
                           (ierr))
1160
1174
 
 
1175
#if defined(HAVE_MPITHRD) && HAVE_MPITHRD
 
1176
 
 
1177
/* -- MPI_Init_thread -- */
 
1178
 
 
1179
DEF_FMPI_FUNC( vt_mpi_init_thread_f(MPI_Fint* required, MPI_Fint* provided,
 
1180
                                    MPI_Fint* ierr) ) {
 
1181
  *ierr = MPI_Init_thread(0, (char***)0, *required, provided);
 
1182
} VT_GENERATE_F77_BINDINGS(mpi_init_thread, MPI_INIT_THREAD,
 
1183
                           vt_mpi_init_thread_f,
 
1184
                           (MPI_Fint* required, MPI_Fint* provided, MPI_Fint* ierr),
 
1185
                           (required, provided, ierr))
 
1186
 
 
1187
#endif /* HAVE_MPITHRD */
 
1188
 
1161
1189
/* -- MPI_Finalize -- */
1162
1190
 
1163
1191
DEF_FMPI_FUNC( vt_mpi_finalize_f(MPI_Fint* ierr) ) {