Is there a buffer size attached to stdout?
        Posted  
        
            by jameswelle
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by jameswelle
        
        
        
        Published on 2010-01-14T17:48:07Z
        Indexed on 
            2010/04/30
            12:17 UTC
        
        
        Read the original article
        Hit count: 307
        
I am trying to find some information on data limits related to stdout on Windows. I can't seem to find the information on MSDN.
Is there a limit to how much data can be written to stdout? If so, what happens if the limit is reached? Is the data lost?
If stdout is redirected (for example, by launching the process from .Net and using the ProcessStartInfo.RedirectStandardOutput property), does that have any effect on how much data can be written? As I read from the stdout stream in the calling process, does that affect the limitations?
Are these limits related in any way to named pipes?
© Stack Overflow or respective owner