Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
72
Issues
72
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
8efca566
Commit
8efca566
authored
Apr 14, 2016
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taking note of what functions we may need to catch
parent
78ebc882
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
darshan-stdio-log-format.h
darshan-stdio-log-format.h
+45
-0
No files found.
darshan-stdio-log-format.h
View file @
8efca566
...
...
@@ -10,6 +10,51 @@
/* current log format version, to support backwards compatibility */
#define DARSHAN_STDIO_VER 1
/*
* functions for opening streams
* --------------
* FILE *fdopen(int, const char *);
* FILE *fopen(const char *, const char *);
* FILE *freopen(const char *, const char *, FILE *);
*
* functions for closing streams
* --------------
* int fclose(FILE *);
*
* 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 *);
* 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 *);
* 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);
* int fseeko(FILE *, off_t, int);
* int fsetpos(FILE *, const fpos_t *);
* void rewind(FILE *);
* int ungetc(int, FILE *);
*/
#define STDIO_COUNTERS \
/* count of number of 'bar' function calls */
\
X(STDIO_BARS) \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment