Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Side by Side Diff: fusl/src/stdio/__stdio_exit.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/stdio/__stdio_close.c ('k') | fusl/src/stdio/__stdio_read.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "stdio_impl.h"
2
3 static FILE *volatile dummy_file = 0;
4 weak_alias(dummy_file, __stdin_used);
5 weak_alias(dummy_file, __stdout_used);
6 weak_alias(dummy_file, __stderr_used);
7
8 static void close_file(FILE *f)
9 {
10 if (!f) return;
11 FFINALLOCK(f);
12 if (f->wpos > f->wbase) f->write(f, 0, 0);
13 if (f->rpos < f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR);
14 }
15
16 void __stdio_exit(void)
17 {
18 FILE *f;
19 for (f=*__ofl_lock(); f; f=f->next) close_file(f);
20 close_file(__stdin_used);
21 close_file(__stdout_used);
22 }
23
24 weak_alias(__stdio_exit, __stdio_exit_needed);
OLDNEW
« no previous file with comments | « fusl/src/stdio/__stdio_close.c ('k') | fusl/src/stdio/__stdio_read.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698