[Darshan-commits] [Git][darshan/darshan][dev-stdio] move comments
Philip Carns
xgitlab at cels.anl.gov
Wed May 18 17:17:59 CDT 2016
Philip Carns pushed to branch dev-stdio at darshan / darshan
Commits:
11c80b44 by Phil Carns at 2016-05-18T17:17:52-05:00
move comments
- - - - -
2 changed files:
- darshan-runtime/lib/darshan-stdio.c
- darshan-stdio-log-format.h
Changes:
=====================================
darshan-runtime/lib/darshan-stdio.c
=====================================
--- a/darshan-runtime/lib/darshan-stdio.c
+++ b/darshan-runtime/lib/darshan-stdio.c
@@ -17,6 +17,52 @@
* - POSIX_FSEEKS
*/
+/* 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 *);
+ */
+
#define _XOPEN_SOURCE 500
#define _GNU_SOURCE
=====================================
darshan-stdio-log-format.h
=====================================
--- a/darshan-stdio-log-format.h
+++ b/darshan-stdio-log-format.h
@@ -10,51 +10,6 @@
/* current log format version, to support backwards compatibility */
#define DARSHAN_STDIO_VER 1
-/*
- * 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 *);
- */
-
#define STDIO_COUNTERS \
/* count of fopens */\
X(STDIO_OPENS) \
View it on GitLab: https://xgitlab.cels.anl.gov/darshan/darshan/commit/11c80b443cafe3486518ae37b944470ef27a238a
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mcs.anl.gov/pipermail/darshan-commits/attachments/20160518/10b3264f/attachment.html>
More information about the Darshan-commits
mailing list