Revision: 5565 Author: [email protected] Date: Thu Sep 30 03:50:39 2010 Log: Add fflush after writing to log (Issue 868).
BUG=868 Review URL: http://codereview.chromium.org/3605001 http://code.google.com/p/v8/source/detail?r=5565 Modified: /branches/bleeding_edge/src/log-utils.h ======================================= --- /branches/bleeding_edge/src/log-utils.h Thu Mar 11 01:48:01 2010 +++ /branches/bleeding_edge/src/log-utils.h Thu Sep 30 03:50:39 2010 @@ -132,6 +132,7 @@ size_t rv = fwrite(msg, 1, length, output_handle_); ASSERT(static_cast<size_t>(length) == rv); USE(rv); + fflush(output_handle_); return length; } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
