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 9 pull requests #98455

Closed
wants to merge 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
fd76552
std: use an event flag based thread parker on SOLID
joboet May 18, 2022
3b6ae15
std: fix deadlock in `Parker`
joboet May 19, 2022
b9660de
std: solve priority issue for Parker
joboet Jun 4, 2022
ab3a2a0
Unify copying data from enclave to userspace
raoulstrackx Mar 29, 2022
531752f
Mitigate MMIO stale data vulnerabilities
raoulstrackx Mar 28, 2022
6f7d193
Ensure userspace allocation is 8-byte aligned
raoulstrackx Mar 23, 2022
caff723
std: relax memory orderings in `Parker`
joboet Jun 7, 2022
a27aace
Test `copy_to_userspace` function
raoulstrackx Mar 22, 2022
edb6c4b
Add a test for issue #33172
rylev May 16, 2022
f30c76a
Turn off cdb test for now, link to issue
rylev Jun 20, 2022
3ea686f
Turn CDB test back on and all clarifying test
rylev Jun 20, 2022
e5402e4
Fix linux tests
rylev Jun 21, 2022
a0eba66
[RFC 2011] Optimize non-consuming operators
c410-f3r Jun 21, 2022
1a25ac9
Add comment about issue caused with multiple statics
rylev Jun 21, 2022
6ac6866
Reverse folder hierarchy
eggyal Jun 20, 2022
75203ee
Remove unecessary references to TypeFolder::Error
eggyal Jun 21, 2022
6a6910e
Address reviewer comments
raoulstrackx Jun 22, 2022
aa91716
add new rval, pull deref early
ouz-a Jun 13, 2022
2a31419
Support setting file accessed/modified timestamps
joshtriplett Jun 19, 2022
f4532d9
Add alias `File::set_modified` as shorthand
joshtriplett Jun 20, 2022
cc4f804
Move help popup into a pocket menu as well
GuillaumeGomez Jun 20, 2022
3eb9e1a
Add/update GUI tests for help pocket menu
GuillaumeGomez Jun 20, 2022
e4b2b41
Merge all popover hide functions into one
GuillaumeGomez Jun 22, 2022
23d325e
Update FIXME comment
rylev Jun 23, 2022
ada2acc
Set relocation_model to Pic on emscripten target
hoodmane Jun 15, 2022
ebdc0e3
Rollup merge of #97085 - rylev:test-issue-33172, r=wesleywiser
Dylan-DPC Jun 24, 2022
2dd59b3
Rollup merge of #97140 - joboet:solid_parker, r=m-ou-se
Dylan-DPC Jun 24, 2022
12883f5
Rollup merge of #98126 - fortanix:raoul/mitigate_stale_data_vulnerabi…
Dylan-DPC Jun 24, 2022
84c2c51
Rollup merge of #98145 - ouz-a:some_branch, r=oli-obk
Dylan-DPC Jun 24, 2022
9437b85
Rollup merge of #98149 - hoodmane:emscripten-pic, r=petrochenkov
Dylan-DPC Jun 24, 2022
be1186d
Rollup merge of #98246 - joshtriplett:times, r=m-ou-se
Dylan-DPC Jun 24, 2022
841ff76
Rollup merge of #98297 - GuillaumeGomez:help-pocket-menu, r=notriddle
Dylan-DPC Jun 24, 2022
6611ace
Rollup merge of #98311 - eggyal:reverse-folder-hierarchy, r=jackh726
Dylan-DPC Jun 24, 2022
68c94cd
Rollup merge of #98337 - c410-f3r:assert-compiler, r=oli-obk
Dylan-DPC Jun 24, 2022
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
Prev Previous commit
Next Next commit
Add comment about issue caused with multiple statics
  • Loading branch information
rylev committed Jun 21, 2022
commit 1a25ac9d2240d745b8ec66a480f6241fa2b1d32a
2 changes: 2 additions & 0 deletions src/test/debuginfo/no_mangle-info.rs
Original file line number Diff line number Diff line change
@@ -27,6 +27,8 @@
#[no_mangle]
pub static TEST: u64 = 0xdeadbeef;

// FIXME: uncommenting this namespace breaks the test, and we're not sure why
// pub static OTHER_TEST: u64 = 43;
pub mod namespace {
pub static OTHER_TEST: u64 = 42;
}