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

« back to all changes in this revision

Viewing changes to ompi/mca/btl/udapl/btl_udapl.h

  • 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:
74
74
    int udapl_free_list_num;   /**< initial size of free lists */
75
75
    int udapl_free_list_max;   /**< maximum size of free lists */
76
76
    int udapl_free_list_inc;   /**< number of elements to alloc when growing */
 
77
    int32_t udapl_use_eager_rdma; /**< turn rdma for small msgs on/off */
77
78
    int32_t udapl_eager_rdma_num;  /**< number of rdma buffers allocated
78
79
                                      for short messages */
79
80
    int32_t udapl_max_eager_rdma_peers; /**< maximum number of peers allowed to
94
95
    char *if_exclude;
95
96
    char **if_exclude_list;
96
97
    char **if_list;            /* used for checking entries not found */
 
98
    int32_t ro_aware_system;   /* default 0; 1 if relaxed ordered platform */
97
99
}; 
98
100
typedef struct mca_btl_udapl_component_t mca_btl_udapl_component_t;
99
101