<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<div class='content'>
<h3>
Shane Snyder pushed to branch master
at <a href="https://xgitlab.cels.anl.gov/darshan/darshan">darshan / darshan</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/f2293a81bb77ddf2b856ef349f7877bbcb4b1e8d">f2293a81</a></strong>
<div>
<span>by Shane Snyder</span>
<i>at 2016-03-14T16:08:28-05:00</i>
</div>
<pre class='commit-message'>fix compile warnings for uninit timers</pre>
</li>
<li>
<strong><a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/b4cc833cf1abc58954ba302b56cd53e69c91630c">b4cc833c</a></strong>
<div>
<span>by Shane Snyder</span>
<i>at 2016-03-14T16:08:28-05:00</i>
</div>
<pre class='commit-message'>bug fix in resolving MPI_Barrrier in shared lib</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
darshan-runtime/lib/darshan-core-init-finalize.c
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
darshan-runtime/lib/darshan-core.c
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://xgitlab.cels.anl.gov/darshan/darshan/compare/07ff011f1df65710745a931a17ada915dce746c8...b4cc833cf1abc58954ba302b56cd53e69c91630c#diff-0'>
<strong>
darshan-runtime/lib/darshan-core-init-finalize.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/darshan-runtime/lib/darshan-core-init-finalize.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/darshan-runtime/lib/darshan-core-init-finalize.c
</span><span style="color: #aaaaaa">@@ -136,6 +136,7 @@ DARSHAN_FORWARD_DECL(PMPI_Gather, int, (const void *sendbuf, int sendcount, MPI_
</span> #else
 DARSHAN_FORWARD_DECL(PMPI_Gather, int, (void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm));
 #endif
<span style="color: #000000;background-color: #ddffdd">+DARSHAN_FORWARD_DECL(PMPI_Barrier, int, (MPI_Comm comm));
</span> 
 void resolve_mpi_symbols (void)
 {
<span style="color: #aaaaaa">@@ -196,6 +197,7 @@ void resolve_mpi_symbols (void)
</span>     MAP_OR_FAIL(PMPI_Send);
     MAP_OR_FAIL(PMPI_Recv);
     MAP_OR_FAIL(PMPI_Gather);
<span style="color: #000000;background-color: #ddffdd">+    MAP_OR_FAIL(PMPI_Barrier);
</span> 
     return;
 }
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://xgitlab.cels.anl.gov/darshan/darshan/compare/07ff011f1df65710745a931a17ada915dce746c8...b4cc833cf1abc58954ba302b56cd53e69c91630c#diff-1'>
<strong>
darshan-runtime/lib/darshan-core.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/darshan-runtime/lib/darshan-core.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/darshan-runtime/lib/darshan-core.c
</span><span style="color: #aaaaaa">@@ -262,12 +262,12 @@ void darshan_core_shutdown()
</span>     darshan_record_id *mod_shared_recs;
     int shared_rec_cnt = 0;
     double start_log_time;
<span style="color: #000000;background-color: #ffdddd">-    double open1, open2;
-    double job1, job2;
-    double rec1, rec2;
</span><span style="color: #000000;background-color: #ddffdd">+    double open1 = 0, open2 = 0;
+    double job1 = 0, job2 = 0;
+    double rec1 = 0, rec2 = 0;
</span>     double mod1[DARSHAN_MAX_MODS] = {0};
     double mod2[DARSHAN_MAX_MODS] = {0};
<span style="color: #000000;background-color: #ffdddd">-    double header1, header2;
</span><span style="color: #000000;background-color: #ddffdd">+    double header1 = 0, header2 = 0;
</span>     double tm_end;
     uint64_t gz_fp = 0;
     MPI_File log_fh;
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/compare/07ff011f1df65710745a931a17ada915dce746c8...b4cc833cf1abc58954ba302b56cd53e69c91630c">View it on GitLab</a>.
<br>
You're receiving this email because of your account on xgitlab.cels.anl.gov.
If you'd like to receive fewer emails, you can
adjust your notification settings.

</p>
</div>
</body>
</html>