Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement_fflush #2771

Merged
merged 2 commits into from
Nov 20, 2014
Merged

implement_fflush #2771

merged 2 commits into from
Nov 20, 2014

Conversation

juj
Copy link
Collaborator

@juj juj commented Sep 8, 2014

Implement fflush for stdout and stderr. Fixes #2770.

@NWilson
Copy link
Contributor

NWilson commented Sep 11, 2014

I've just noticed in some code I'm using that it appears that stdout isn't flushed when I call exit? It would be good to flush stdout and stderr when we call the atexit handlers.

@kripken
Copy link
Member

kripken commented Sep 11, 2014

@NWilson that sounds like something we should do. FS.quit is called during exit, and it calls close() on the streams. @juj , perhaps we should call flush from there?

@juj Do you know if we have tests for this? If not we should add one.

@kripken kripken force-pushed the incoming branch 2 times, most recently from 92ca007 to c4f0934 Compare October 28, 2014 22:45
@juj juj force-pushed the implement_fflush branch from 4a39942 to 0af2141 Compare November 18, 2014 13:49
@juj
Copy link
Collaborator Author

juj commented Nov 18, 2014

When the streams close, they do flush, but the problem is that if no exit runtime is set, exit won't be called, and the streams won't close, and therefore won't flush either. @NWilson: do you have a test case that fails?

I've updated the pull request with a test case from #2770.

@NWilson
Copy link
Contributor

NWilson commented Nov 18, 2014

Good point about noExitRuntime, I often use that so that's probably what
was causing the lack of flushing for me. I'll take back my comment now I
can't produce a test case!


Nicholas Wilson: [email protected]
Site and blog: www.nicholaswilson.me.uk
29 Beales Way, CB4 2PW
07845 182898

On 18 November 2014 13:51, juj [email protected] wrote:

When the streams close, they do flush, but the problem is that if no exit
runtime is set, the streams won't flush. @NWilson
https://github.com/NWilson: do you have a test case that fails?

I've updated the pull request with a test case from #2770
#2770.


Reply to this email directly or view it on GitHub
#2771 (comment).

@kripken
Copy link
Member

kripken commented Nov 18, 2014

Is this ready for review?

@juj
Copy link
Collaborator Author

juj commented Nov 19, 2014

Yes, this is good to go.

@juj juj force-pushed the implement_fflush branch from 0af2141 to 15bb2cf Compare November 20, 2014 14:51
kripken added a commit that referenced this pull request Nov 20, 2014
@kripken kripken merged commit f4e6a1c into emscripten-core:incoming Nov 20, 2014
juj added a commit that referenced this pull request Nov 24, 2014
…ting in multiple parts. Update the test_fflush test to showcase this.
@juj juj mentioned this pull request Apr 16, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fflush does not flush stdout or stderr in browser environment.
3 participants