PRB: stdout/stderr May Not Be In Sync When Using Redirection

Last reviewed: July 25, 1997
Article ID: Q122442
The information in this article applies to:
  • The C Run-time (CRT), included with: - Microsoft Visual C++ for Windows, versions 1.5, 1.51 - Microsoft Visual C++, 32-bit Edition, version 2.0, 2.1, 4.0, 5.0

SYMPTOMS

When the standard output and error streams are redirected or piped, console application output may not be serialized. This can result in unexpected output.

CAUSE

Although devices as serialized by default, the current Microsoft CRT implementation does not treat pipes as if they were devices (due to the potentially high overhead--added code--of doing so.) Thus, if stderr and stdout refer to the same file or device, and output is redirected with a pipe, the output will not be serialized.

STATUS

This behavior is by design. The potential for slow execution currently outweighs the effort necessary to implement pipes such that they are treated as devices.

MORE INFORMATION

To demonstrate this behavior, build and run the sample code (TEST.C) below. If it is executed from an MS-DOS or Windows NT command prompt, the following output is generated:

  c:\>test
  hello world (stdout)
  hello world (stderr)
  hello world (stdout)
  hello world (stderr)

However, if the output is piped with the MORE command, it will not be serialized, as follows:

  c:\>test | more
  hello world (stderr)
  hello world (stderr)
  hello world (stdout)
  hello world (stdout)

Sample Code

   /* Compile options needed: none
   /*

   /* TEST.C */

   #include <stdio.h>

   int main(void)
   {
     printf ( "Hello world (stdout)\n" );
     fprintf ( stderr, "Hello world (stderr)\n" );
     printf ( "Hello world (stdout)\n" );
     fprintf ( stderr, "Hello world (stderr)\n" );
   }
Keywords          : CRTIss
Version           : 1.5 1.51 2.0 2.1 4.0 5.0
Platform          : NT WINDOWS
Issue type        : kbprb


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 25, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.