Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2745

Show
Ignore:
Timestamp:
11/03/07 00:06:15 (1 year ago)
Author:
kris
Message:

added doc/note about thread-safety

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/io/Stdout.d

    r2702 r2745  
    7878        --- 
    7979 
     80        Note that Stdout is *not* intended to be thread-safe. Use either 
     81        tango.util.log.Trace or the standard logging facilities in order  
     82        to enable atomic console I/O 
     83         
    8084*******************************************************************************/ 
    8185 
     
    123127        Stdout ("abc", 1, 2, 3).newline;         
    124128        Stdout (1, 2, 3).newline;         
     129        Stdout (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1).newline; 
    125130 
    126131        Stdout ("abc {}{}{}", 1, 2, 3).newline;