<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/sys/redox/stdio.rs, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-08-06T22:18:23+00:00</updated>
<entry>
<title>redox: convert to target_family unix</title>
<updated>2019-08-06T22:18:23+00:00</updated>
<author>
<name>Jeremy Soller</name>
<email>jeremy@system76.com</email>
</author>
<published>2019-04-07T14:39:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0498da9a3dc061f604fcfb9b56bd889e07f2b7e2'/>
<id>urn:sha1:0498da9a3dc061f604fcfb9b56bd889e07f2b7e2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libstd =&gt; 2018</title>
<updated>2019-02-27T19:06:15+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-02-10T19:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=93b6d9e086c6910118a57e4332c9448ab550931f'/>
<id>urn:sha1:93b6d9e086c6910118a57e4332c9448ab550931f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove pub(crate) from stderr_raw</title>
<updated>2019-02-23T11:11:10+00:00</updated>
<author>
<name>Paul Dicker</name>
<email>pitdicker@gmail.com</email>
</author>
<published>2019-02-23T11:11:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1a944b0d5bbc1b70423f6d710021bea5ba16f0b2'/>
<id>urn:sha1:1a944b0d5bbc1b70423f6d710021bea5ba16f0b2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use standard Read/Write traits in sys::stdio</title>
<updated>2019-02-20T18:27:03+00:00</updated>
<author>
<name>Paul Dicker</name>
<email>pitdicker@gmail.com</email>
</author>
<published>2019-02-20T07:18:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6464e32ea97fe0b18f75becc82cba9b19dfe453c'/>
<id>urn:sha1:6464e32ea97fe0b18f75becc82cba9b19dfe453c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove sys::*::Stderr Write implementation</title>
<updated>2019-02-20T05:37:30+00:00</updated>
<author>
<name>Paul Dicker</name>
<email>pitdicker@gmail.com</email>
</author>
<published>2019-02-11T15:51:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=06511573f236a07b8ecd7c3e3d5fef1d53e59352'/>
<id>urn:sha1:06511573f236a07b8ecd7c3e3d5fef1d53e59352</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove licenses</title>
<updated>2018-12-26T04:08:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2018-12-25T15:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a663555ddf36f6b041445894a8c175cd1bc718c'/>
<id>urn:sha1:2a663555ddf36f6b041445894a8c175cd1bc718c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactor stderr_prints_nothing into a more modular function</title>
<updated>2018-12-06T15:07:15+00:00</updated>
<author>
<name>Jethro Beekman</name>
<email>jethro@fortanix.com</email>
</author>
<published>2018-08-27T16:57:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=030b1ed7f709539f5ca422758e9fe00d173aee76'/>
<id>urn:sha1:030b1ed7f709539f5ca422758e9fe00d173aee76</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Minimize size of panicking on wasm</title>
<updated>2018-04-13T14:03:00+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2018-03-29T21:59:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c3a5d6b130e27d7d7587f56581247d5b08c38594'/>
<id>urn:sha1:c3a5d6b130e27d7d7587f56581247d5b08c38594</id>
<content type='text'>
This commit applies a few code size optimizations for the wasm target to
the standard library, namely around panics. We notably know that in most
configurations it's impossible for us to print anything in
wasm32-unknown-unknown so we can skip larger portions of panicking that
are otherwise simply informative. This allows us to get quite a nice
size reduction.

Finally we can also tweak where the allocation happens for the
`Box&lt;Any&gt;` that we panic with. By only allocating once unwinding starts
we can reduce the size of a panicking wasm module from 44k to 350 bytes.
</content>
</entry>
<entry>
<title>std: Change how EBADF is handled in `sys`</title>
<updated>2017-11-09T04:41:17+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2017-11-01T19:50:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1ccb50eaa670f86b69e7a64484a8c97e13169183'/>
<id>urn:sha1:1ccb50eaa670f86b69e7a64484a8c97e13169183</id>
<content type='text'>
This commit removes the reexport of `EBADF_ERR` as a constant from
libstd's portability facade, instead opting for a platform-specific
function that specifically queries an `io::Error`. Not all platforms may
have a constant for this, so it makes the intent a little more clear
that a code need not be supplied, just an answer to a query.
</content>
</entry>
<entry>
<title>Add `Read::initializer`.</title>
<updated>2017-06-21T03:26:22+00:00</updated>
<author>
<name>Steven Fackler</name>
<email>sfackler@gmail.com</email>
</author>
<published>2017-05-15T01:29:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ecbb896b9eb2acadefde57be493e4298c1aa04a3'/>
<id>urn:sha1:ecbb896b9eb2acadefde57be493e4298c1aa04a3</id>
<content type='text'>
This is an API that allows types to indicate that they can be passed
buffers of uninitialized memory which can improve performance.
</content>
</entry>
</feed>
