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

« back to all changes in this revision

Viewing changes to ompi/contrib/vt/vt/vtlib/vt_comp_ftrace.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:
111
111
    VT_MEMHOOKS_ON();
112
112
  }
113
113
 
 
114
  /* -- if VampirTrace already finalized, return -- */
 
115
  if ( !vt_is_alive ) return;
 
116
 
114
117
  /* -- ignore NEC OMP runtime functions -- */
115
118
  if ( strchr(func, '$') != NULL ) return;
116
119
 
152
155
  char *func;
153
156
  uint64_t time;
154
157
 
 
158
  /* -- if VampirTrace already finalized, return -- */
 
159
  if ( !vt_is_alive ) return;
 
160
 
155
161
  VT_MEMHOOKS_OFF();
156
162
 
157
163
  func = (char *)vftr_getname();