Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #42184

Closed
wants to merge 33 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9ad0dba
remove "much" from unicode diagnostic
euclio May 20, 2017
66237af
Fix building without backtrace feature, which was broken in ca8b754
ids1024 May 21, 2017
f4147e5
Implement requires_synchronized_create() for Redox
ids1024 May 21, 2017
6dde3f4
Move some tests from compile-fail to ui
oli-obk May 16, 2017
ec1fa6d
Change macro typo helps to suggestions
oli-obk May 16, 2017
27359bd
Change enum variant help into a suggestion
oli-obk May 16, 2017
e328ef0
Change some "did you mean `self.*`" messages to suggestions
oli-obk May 16, 2017
8add02a
Changes in ui tests
oli-obk May 16, 2017
e618a4f
Add some guidelines for suggestion messages and follow them
oli-obk May 18, 2017
a9b54ab
Update ui tests output
oli-obk May 18, 2017
9d41d0e
Move a compile-fail test to ui
oli-obk May 18, 2017
bff4795
Tidy errors
oli-obk May 18, 2017
6f681c2
Fix line numbers in ui test
oli-obk May 22, 2017
1343bc6
Readd //~ERROR messages
oli-obk May 22, 2017
150d644
rustbuild: split Install out of Dist subcommand
Keruspe May 18, 2017
14b767d
Add example of recursive drop to Drop trait.
Havvy May 22, 2017
ca909c8
Add example of variable declaration drop order to Drop trait.
Havvy May 22, 2017
d7927ff
Add description of how values are dropped to Drop trait.
Havvy May 22, 2017
5f4b0ff
Fix trailing whitespace.
Havvy May 22, 2017
72eb010
update-all-references.sh doesn't deterministically work on ui-fulldeps
oli-obk May 23, 2017
b41b294
Suggested changes by birkenfeld
Havvy May 23, 2017
794e572
Give step_trait a distinct tracking issue from step_by
scottmcm May 23, 2017
9af464b
rustbuild: drop unused macro in tets
Keruspe May 23, 2017
53ae00a
rustbuild: make distcheck depend on dist-plain-source-tarball
Keruspe May 23, 2017
e860655
Remove some needless // gate-test- comments
est31 May 23, 2017
2fc3f28
Rollup merge of #42033 - oli-obk:suggestions, r=petrochenkov
frewsxcv May 24, 2017
c6fbf7e
Rollup merge of #42109 - Keruspe:master, r=alexcrichton
frewsxcv May 24, 2017
d3e05bb
Rollup merge of #42120 - euclio:unicode, r=arielb1
frewsxcv May 24, 2017
057761c
Rollup merge of #42141 - ids1024:nobacktrace, r=aturon
frewsxcv May 24, 2017
de0ab85
Rollup merge of #42142 - ids1024:redox, r=aturon
frewsxcv May 24, 2017
5b88bb8
Rollup merge of #42159 - Havvy:doc-drop, r=steveklabnik
frewsxcv May 24, 2017
03adfe0
Rollup merge of #42169 - scottmcm:new-step-trait-issue, r=alexcrichton
frewsxcv May 24, 2017
2c39c0d
Rollup merge of #42177 - est31:master, r=Mark-Simulacrum
frewsxcv May 24, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/libstd/sys/redox/thread_local.rs
Original file line number Diff line number Diff line change
@@ -64,3 +64,8 @@ pub unsafe fn set(key: Key, value: *mut u8) {
pub unsafe fn destroy(key: Key) {
keys().remove(&key);
}

#[inline]
pub fn requires_synchronized_create() -> bool {
false
}