<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>

</head>
<body>
<style type="text/css">
img {
max-width: 100%; height: auto;
}
</style>
<div class="content">
<h3>
Philip Carns pushed to branch dev-stdio
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/11c80b443cafe3486518ae37b944470ef27a238a">11c80b44</a></strong>
<div>
<span>by Phil Carns</span>
<i>at 2016-05-18T17:17:52-05:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap">move comments</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class="file-stats">
<a href="#620f2ecad2bb6f74b2fcd0134963a841" style="text-decoration: none">
darshan-runtime/lib/darshan-stdio.c
</a>
</li>
<li class="file-stats">
<a href="#ad29afc395839758d41094872298bd0d" style="text-decoration: none">
darshan-stdio-log-format.h
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id="620f2ecad2bb6f74b2fcd0134963a841">
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/11c80b443cafe3486518ae37b944470ef27a238a#diff-0">
<strong>
darshan-runtime/lib/darshan-stdio.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/darshan-runtime/lib/darshan-stdio.c
</span><span style="background: #ddffdd; color: #000000">+++ b/darshan-runtime/lib/darshan-stdio.c
</span><span style="color: #aaaaaa">@@ -17,6 +17,52 @@
</span>  *     - POSIX_FSEEKS
  */
 
<span style="background: #ddffdd; color: #000000">+/* catalog of stdio functions instrumented by this module
+ *
+ * functions for opening streams
+ * --------------
+ * FILE    *fdopen(int, const char *);                      DONE
+ * FILE    *fopen(const char *, const char *);
+ * FILE    *freopen(const char *, const char *, FILE *);
+ *
+ * functions for closing streams
+ * --------------
+ * int      fclose(FILE *);                                 DONE
+ *
+ * functions for flushing streams
+ * --------------
+ * int      fflush(FILE *);
+ *
+ * functions for reading data
+ * --------------
+ * int      fgetc(FILE *);
+ * char    *fgets(char *, int, FILE *);
+ * size_t   fread(void *, size_t, size_t, FILE *);          DONE
+ * int      fscanf(FILE *, const char *, ...);
+ * int      getc(FILE *);
+ * int      getc_unlocked(FILE *);
+ * int      getw(FILE *);
+ *
+ * functions for writing data
+ * --------------
+ * int      fprintf(FILE *, const char *, ...);
+ * int      fputc(int, FILE *);
+ * int      fputs(const char *, FILE *);
+ * size_t   fwrite(const void *, size_t, size_t, FILE *);   DONE
+ * int      putc(int, FILE *);
+ * int      putc_unlocked(int, FILE *);
+ * int      putw(int, FILE *);
+ * int      vfprintf(FILE *, const char *, va_list);
+ *
+ * functions for changing file position
+ * --------------
+ * int      fseek(FILE *, long int, int);                   DONE
+ * int      fseeko(FILE *, off_t, int);
+ * int      fsetpos(FILE *, const fpos_t *);
+ * void     rewind(FILE *);
+ * int      ungetc(int, FILE *);
+ */
+
</span> #define _XOPEN_SOURCE 500
 #define _GNU_SOURCE
 
</code></pre>

<br>
</li>
<li id="ad29afc395839758d41094872298bd0d">
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/11c80b443cafe3486518ae37b944470ef27a238a#diff-1">
<strong>
darshan-stdio-log-format.h
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/darshan-stdio-log-format.h
</span><span style="background: #ddffdd; color: #000000">+++ b/darshan-stdio-log-format.h
</span><span style="color: #aaaaaa">@@ -10,51 +10,6 @@
</span> /* current log format version, to support backwards compatibility */
 #define DARSHAN_STDIO_VER 1
 
<span style="background: #ffdddd; color: #000000">-/*
- * functions for opening streams
- * --------------
- * FILE    *fdopen(int, const char *);                      DONE
- * FILE    *fopen(const char *, const char *);
- * FILE    *freopen(const char *, const char *, FILE *);
- *
- * functions for closing streams
- * --------------
- * int      fclose(FILE *);                                 DONE
- *
- * functions for flushing streams
- * --------------
- * int      fflush(FILE *);
- *
- * functions for reading data
- * --------------
- * int      fgetc(FILE *);
- * char    *fgets(char *, int, FILE *);
- * size_t   fread(void *, size_t, size_t, FILE *);          DONE
- * int      fscanf(FILE *, const char *, ...);
- * int      getc(FILE *);
- * int      getc_unlocked(FILE *);
- * int      getw(FILE *);
- *
- * functions for writing data
- * --------------
- * int      fprintf(FILE *, const char *, ...);
- * int      fputc(int, FILE *);
- * int      fputs(const char *, FILE *);
- * size_t   fwrite(const void *, size_t, size_t, FILE *);   DONE
- * int      putc(int, FILE *);
- * int      putc_unlocked(int, FILE *);
- * int      putw(int, FILE *);
- * int      vfprintf(FILE *, const char *, va_list);
- *
- * functions for changing file position
- * --------------
- * int      fseek(FILE *, long int, int);                   DONE
- * int      fseeko(FILE *, off_t, int);
- * int      fsetpos(FILE *, const fpos_t *);
- * void     rewind(FILE *);
- * int      ungetc(int, FILE *);
- */
-
</span> #define STDIO_COUNTERS \
     /* count of fopens */\
     X(STDIO_OPENS) \
</code></pre>

<br>
</li>

</div>
<div class="footer" style="margin-top: 10px">
<p style="color: #777; font-size: small">

<br>
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/11c80b443cafe3486518ae37b944470ef27a238a">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>