(index<- )        ./librustuv/macros.rs

    git branch:    * master           5200215 auto merge of #14035 : alexcrichton/rust/experimental, r=huonw
    modified:    Fri Apr 25 22:40:04 2014
  1  // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
  2  // file at the top-level directory of this distribution and at
  3  // http://rust-lang.org/COPYRIGHT.
  4  //
  5  // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6  // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7  // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8  // option. This file may not be copied, modified, or distributed
  9  // except according to those terms.
 10  
 11  #![macro_escape]
 12  
 13  use std::fmt;
 14  
 15  macro_rules! uverrln (
 16      ($($arg:tt)*) => ( {
 17          format_args!(::macros::dumb_println, $($arg)*)
 18      } )
 19  )
 20  
 21  // Some basic logging. Enabled by passing `--cfg uvdebug` to the libstd build.
 22  macro_rules! uvdebug (
 23      ($($arg:tt)*) => ( {
 24          if cfg!(uvdebug) {
 25              uverrln!($($arg)*)
 26          }
 27      })
 28  )
 29  
 30  pub fn dumb_println(args: &fmt::Arguments) {
 31      use std::io;
 32      use std::rt;
 33  
 34      let mut w = rt::Stderr;
 35      let _ = fmt::writeln(&mut w as &mut io::Writer, args);
 36  }