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
76
Issues
76
List
Boards
Labels
Milestones
Merge Requests
14
Merge Requests
14
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
05a68fd0
Commit
05a68fd0
authored
May 23, 2016
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skip the unlocked functions
parent
551c339c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
darshan-runtime/lib/darshan-stdio.c
darshan-runtime/lib/darshan-stdio.c
+4
-2
No files found.
darshan-runtime/lib/darshan-stdio.c
View file @
05a68fd0
...
...
@@ -43,7 +43,6 @@
* int fscanf(FILE *, const char *, ...); DONE
* int vfscanf(FILE *, const char *, va_list); DONE
* int getc(FILE *); DONE
* int getc_unlocked(FILE *);
* int getw(FILE *);
*
* functions for writing data
...
...
@@ -53,7 +52,6 @@
* 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);
*
...
...
@@ -64,6 +62,10 @@
* int fsetpos(FILE *, const fpos_t *);
* void rewind(FILE *);
* int ungetc(int, FILE *);
*
* Omissions: _unlocked() variants of the various flush, read, and write
* functions. There are many of these, but they are not available on all
* systems and the man page advises not to use them.
*/
#define _XOPEN_SOURCE 500
...
...
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