<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/sys/vxworks/ext, 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>2020-07-28T00:51:13+00:00</updated>
<entry>
<title>mv std libs to library/</title>
<updated>2020-07-28T00:51:13+00:00</updated>
<author>
<name>mark</name>
<email>markm@cs.wisc.edu</email>
</author>
<published>2020-06-12T02:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2c31b45ae878b821975c4ebd94cc1e49f6073fd0'/>
<id>urn:sha1:2c31b45ae878b821975c4ebd94cc1e49f6073fd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix links</title>
<updated>2020-07-02T11:19:04+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2020-06-27T22:43:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=af2962027721b8dc700de339350f96b284c15fcd'/>
<id>urn:sha1:af2962027721b8dc700de339350f96b284c15fcd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unused crate imports in 2018 edition crates</title>
<updated>2020-06-23T03:01:20+00:00</updated>
<author>
<name>yuqio</name>
<email>niklas.sauter@gmx.de</email>
</author>
<published>2020-06-23T03:01:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9267b4f6120ff137f2ba8649e07ff093c9428340'/>
<id>urn:sha1:9267b4f6120ff137f2ba8649e07ff093c9428340</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Stabilize process_set_argv0 feature for Unix</title>
<updated>2020-05-12T16:34:23+00:00</updated>
<author>
<name>Jeremy Fitzhardinge</name>
<email>jsgf@fb.com</email>
</author>
<published>2020-05-12T00:19:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ff9646c0adc149dfff194665785f4daa3aa6d9c3'/>
<id>urn:sha1:ff9646c0adc149dfff194665785f4daa3aa6d9c3</id>
<content type='text'>
This stabilizes process_set_argv0 targeting 1.45.0. It has been
useful in practice and seems useful as-is.

The equivalent feature could be implemented for Windows, but as far as I
know nobody has. That can be done separately.

Tracking issue: #66510
</content>
</entry>
<entry>
<title>Support feature process_set_argv0 for VxWorks</title>
<updated>2020-01-24T17:59:59+00:00</updated>
<author>
<name>BaoshanPang</name>
<email>pangbw@gmail.com</email>
</author>
<published>2020-01-17T17:29:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=06af44238f2b7a82995dc0a354403ab68dab7cc5'/>
<id>urn:sha1:06af44238f2b7a82995dc0a354403ab68dab7cc5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add ExitStatusExt into prelude</title>
<updated>2019-12-03T18:16:45+00:00</updated>
<author>
<name>BaoshanPang</name>
<email>pangbw@gmail.com</email>
</author>
<published>2019-12-03T18:16:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=79849eed5d5617a181be89531a2abd9db4d74c84'/>
<id>urn:sha1:79849eed5d5617a181be89531a2abd9db4d74c84</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Format libstd/sys with rustfmt</title>
<updated>2019-11-30T02:37:58+00:00</updated>
<author>
<name>David Tolnay</name>
<email>dtolnay@gmail.com</email>
</author>
<published>2019-11-27T18:28:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c34fbfaad38cf5829ef5cfe780dc9d58480adeaa'/>
<id>urn:sha1:c34fbfaad38cf5829ef5cfe780dc9d58480adeaa</id>
<content type='text'>
This commit applies rustfmt with rust-lang/rust's default settings to
files in src/libstd/sys *that are not involved in any currently open PR*
to minimize merge conflicts. THe list of files involved in open PRs was
determined by querying GitHub's GraphQL API with this script:
https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8

With the list of files from the script in outstanding_files, the
relevant commands were:

    $ find src/libstd/sys -name '*.rs' \
        | xargs rustfmt --edition=2018 --unstable-features --skip-children
    $ rg libstd/sys outstanding_files | xargs git checkout --

Repeating this process several months apart should get us coverage of
most of the rest of the files.

To confirm no funny business:

    $ git checkout $THIS_COMMIT^
    $ git show --pretty= --name-only $THIS_COMMIT \
        | xargs rustfmt --edition=2018 --unstable-features --skip-children
    $ git diff $THIS_COMMIT  # there should be no difference
</content>
</entry>
<entry>
<title>Rollup merge of #65905 - cuviper:doc-unix-mode, r=Dylan-DPC</title>
<updated>2019-11-05T08:49:52+00:00</updated>
<author>
<name>Pietro Albini</name>
<email>pietro@pietroalbini.org</email>
</author>
<published>2019-11-05T08:49:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0a284153e9f2b7b371676233888144041a7fb163'/>
<id>urn:sha1:0a284153e9f2b7b371676233888144041a7fb163</id>
<content type='text'>
[doc] fixes for unix/vxworks `OpenOptionsExt::mode`
</content>
</entry>
<entry>
<title>vxWorks: remove all code related to UNIX socket as it is not supported by vxWorks</title>
<updated>2019-10-29T21:27:30+00:00</updated>
<author>
<name>BaoshanPang</name>
<email>pangbw@gmail.com</email>
</author>
<published>2019-10-29T21:08:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8995974e7031ccb14facd2aa8986619db2405912'/>
<id>urn:sha1:8995974e7031ccb14facd2aa8986619db2405912</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[doc] fix the reference to using `OpenOptions::open`</title>
<updated>2019-10-28T20:03:18+00:00</updated>
<author>
<name>Josh Stone</name>
<email>jistone@redhat.com</email>
</author>
<published>2019-10-28T20:03:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=624e7d7cd0ed643e5064b9312d78634caff41e1a'/>
<id>urn:sha1:624e7d7cd0ed643e5064b9312d78634caff41e1a</id>
<content type='text'>
</content>
</entry>
</feed>
