summary refs log tree commit diff
path: root/src/libstd/io/stdio.rs
AgeCommit message (Expand)AuthorLines
2017-11-08std: Change how EBADF is handled in `sys`Alex Crichton-3/+1
2017-06-20Add `Read::initializer`.Steven Fackler-11/+12
2017-05-10Fix up stability annotations per feedback.Zack Weinberg-2/+2
2017-05-10Revise the eprint(ln)! feature.Zack Weinberg-50/+29
2017-05-10Add `eprint!` and `eprintln!` macros to the prelude.Zack Weinberg-0/+36
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-2/+2
2017-01-29Fix a few impl stability attributesOliver Middleton-6/+6
2017-01-22libstd: replace all `try!` with `?` in documentation examplesUtkarsh Kukreti-9/+9
2016-12-18Implement `fmt::Debug` for all structures in libstd.Corey Farwell-0/+42
2016-12-16Address falloutAaron Turon-3/+3
2016-11-28Move stdout/err flush into sysJeremy Soller-6/+0
2016-11-10Merge branch 'master' into redoxJeremy Soller-1/+2
2016-11-10Fixes for stdio and processes on RedoxJeremy Soller-0/+6
2016-11-05add missing urls on io structsGuillaume Gomez-1/+2
2016-11-01std: Move a plattform-specific constant to sys::stdioBrian Anderson-9/+1
2016-10-01std: Move platform specific stdio code into sysBrian Anderson-5/+2
2016-09-30Change the sigs of set_print/set_panic to allow restoring the default objectsBrian Anderson-4/+4
2016-09-30Ignore lots and lots of std tests on emscriptenBrian Anderson-0/+1
2016-08-24Use `#[prelude_import]` in `libstd`.Jeffrey Seyfried-1/+0
2016-07-30Add doc example for StdoutGuillaume Gomez-0/+15
2016-07-30Add doc example for StdinGuillaume Gomez-0/+15
2016-07-30Add doc example for io::StderrGuillaume Gomez-0/+15
2016-03-23doc: Stdin is locked for reads, not writesBrian Anderson-2/+2
2016-03-10Fixup stout/stderr on WindowsOliver Middleton-19/+2
2016-03-08std: Funnel read_to_end through to one locationAlex Crichton-2/+10
2016-01-25std: Fix some behavior without stdio handlesAlex Crichton-1/+1
2015-12-30doc: missed these in a4da9acTshepang Lekhonkhobe-2/+2
2015-12-30doc: add gravesTshepang Lekhonkhobe-23/+23
2015-12-30doc: add some links for io::stdioTshepang Lekhonkhobe-14/+35
2015-12-23doc: make line visibleTshepang Lekhonkhobe-1/+1
2015-11-09std: Migrate to the new libcAlex Crichton-3/+2
2015-10-31std: Prevent print panics when using TLSAlex Crichton-8/+26
2015-10-08typos: fix a grabbag of typos all over the placeCristi Cobzarenco-3/+3
2015-08-30Auto merge of #27588 - cesarb:read_all, r=alexcrichtonbors-0/+3
2015-08-24Implement read_exact for the Read traitCesar Eduardo Barros-0/+3
2015-08-15std: Add issues to all unstable featuresAlex Crichton-3/+6
2015-08-11correct copy/paste typos in stdio.rs commentsAlex Burka-4/+4
2015-07-31Auto merge of #26897 - RalfJung:stdin-mut, r=alexcrichtonbors-1/+1
2015-07-15Add specializations of read_to_end for Stdin, TcpStream and File,Alisdair Owens-0/+4
2015-07-10Add more std::io documentation.Steve Klabnik-15/+97
2015-07-08Stdin::read_line: read_line does not need a mutable borrowRalf Jung-1/+1
2015-06-30doc: add example for Stdin::read_lineTshepang Lekhonkhobe-0/+22
2015-06-14Implement RFC 1014Steven Fackler-19/+77
2015-05-27Use `const fn` to abstract away the contents of UnsafeCell & friends.Eduard Burtescu-3/+3
2015-05-09Squeeze the last bits of `task`s in documentation in favor of `thread`Barosl Lee-6/+6
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-22Explain how to create a Stdin or StdoutMatt Brubeck-0/+4
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-7/+7
2015-04-08Implement reentrant mutexes and make stdio use themSimonas Kazlauskas-17/+25
2015-03-27std: Don't deadlock/panic on recursive printsAlex Crichton-11/+13