<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/test/run-fail/panic-task-name-owned.rs, branch 1.26.2</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.26.2</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.26.2'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2016-09-30T21:02:44+00:00</updated>
<entry>
<title>Adding ignore-emscripten to failing tests.</title>
<updated>2016-09-30T21:02:44+00:00</updated>
<author>
<name>Ross Schulman</name>
<email>ross@rbs.io</email>
</author>
<published>2016-09-06T00:00:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b2dfeac6907ab63a3261cfa66c04db239d138433'/>
<id>urn:sha1:b2dfeac6907ab63a3261cfa66c04db239d138433</id>
<content type='text'>
</content>
</entry>
<entry>
<title>run rustfmt on test/run-fail folder</title>
<updated>2016-06-05T18:51:14+00:00</updated>
<author>
<name>Srinivas Reddy Thatiparthy</name>
<email>thatiparthysreenivas@gmail.com</email>
</author>
<published>2016-05-27T02:39:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=73ef372f6381f6f1453743aa3fc5b39d2df65895'/>
<id>urn:sha1:73ef372f6381f6f1453743aa3fc5b39d2df65895</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fallout: move from scoped to spawn</title>
<updated>2015-04-14T15:15:45+00:00</updated>
<author>
<name>Aaron Turon</name>
<email>aturon@mozilla.com</email>
</author>
<published>2015-04-13T22:15:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a9fd41e1f984fdfecb78ba9570bb159854c58b16'/>
<id>urn:sha1:a9fd41e1f984fdfecb78ba9570bb159854c58b16</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Test fixes and rebase conflicts</title>
<updated>2015-02-18T01:27:46+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2015-02-17T23:24:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6ac3799b75780f8c18bc38331403e1e517b89bab'/>
<id>urn:sha1:6ac3799b75780f8c18bc38331403e1e517b89bab</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove all `i` suffixes</title>
<updated>2015-01-30T03:38:54+00:00</updated>
<author>
<name>Tobias Bucher</name>
<email>tobiasbucher5991@gmail.com</email>
</author>
<published>2015-01-25T21:05:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7f64fe4e27555c256cb228feb05d4181a2287125'/>
<id>urn:sha1:7f64fe4e27555c256cb228feb05d4181a2287125</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fallout from stabilization</title>
<updated>2015-01-06T22:57:52+00:00</updated>
<author>
<name>Aaron Turon</name>
<email>aturon@mozilla.com</email>
</author>
<published>2015-01-06T05:59:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=caca9b2e7109a148d100a3c6851241d3815da3db'/>
<id>urn:sha1:caca9b2e7109a148d100a3c6851241d3815da3db</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revise std::thread API to join by default</title>
<updated>2014-12-19T07:31:52+00:00</updated>
<author>
<name>Aaron Turon</name>
<email>aturon@mozilla.com</email>
</author>
<published>2014-12-14T08:05:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a27fbac86849e07a0a6c746869d8f78319bd3a16'/>
<id>urn:sha1:a27fbac86849e07a0a6c746869d8f78319bd3a16</id>
<content type='text'>
This commit is part of a series that introduces a `std::thread` API to
replace `std::task`.

In the new API, `spawn` returns a `JoinGuard`, which by default will
join the spawned thread when dropped. It can also be used to join
explicitly at any time, returning the thread's result. Alternatively,
the spawned thread can be explicitly detached (so no join takes place).

As part of this change, Rust processes now terminate when the main
thread exits, even if other detached threads are still running, moving
Rust closer to standard threading models. This new behavior may break code
that was relying on the previously implicit join-all.

In addition to the above, the new thread API also offers some built-in
support for building blocking abstractions in user space; see the module
doc for details.

Closes #18000

[breaking-change]
</content>
</entry>
<entry>
<title>Mostly rote conversion of `proc()` to `move||` (and occasionally `Thunk::new`)</title>
<updated>2014-12-14T09:21:56+00:00</updated>
<author>
<name>Niko Matsakis</name>
<email>niko@alum.mit.edu</email>
</author>
<published>2014-11-26T13:12:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5c3d3989192f88b16f39d554c3844700c91b6c8e'/>
<id>urn:sha1:5c3d3989192f88b16f39d554c3844700c91b6c8e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>test: Rename files, fail -&gt; panic.</title>
<updated>2014-11-11T17:36:12+00:00</updated>
<author>
<name>Michael Sproul</name>
<email>micsproul@gmail.com</email>
</author>
<published>2014-11-11T17:36:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7f0b9d4465f7b1b3655cb4b80c7fe894cd6ef641'/>
<id>urn:sha1:7f0b9d4465f7b1b3655cb4b80c7fe894cd6ef641</id>
<content type='text'>
</content>
</entry>
</feed>
