Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b94da2b
Enable combining +crt-static and relocation-model=pic on x86_64-unkno…
bossmc Jun 16, 2021
6a88311
Check for -static-pie support before testing support
bossmc Nov 1, 2021
bae0da8
Implement data and vtable getters for `RawWaker`
oxalica Dec 12, 2021
d9b98f9
Eliminate duplicate codes of is_single_fp_element
woodenarrow Dec 17, 2021
f8ee57b
`impl Display for io::ErrorKind`
jyn514 Jan 19, 2022
2022bac
debuginfo: Make sure that type names for closure and generator enviro…
michaelwoerister Jan 19, 2022
2bae730
update `FutureIncompatibilityReason`
lcnr Jan 27, 2022
2e9ee90
implement lint for suspicious auto trait impls
lcnr Jan 27, 2022
1a77d62
kmc-solid: Increase the default stack size
kawadakk Jan 31, 2022
0b8f372
Remove two unnecessary transmutes from opaque Encoder and Decoder
bjorn3 Jan 29, 2022
078af38
Rollup merge of #86374 - bossmc:enable-static-pie-for-gnu, r=nagisa
matthiaskrgr Jan 31, 2022
6d20aef
Rollup merge of #91828 - oxalica:feat/waker-getters, r=dtolnay
matthiaskrgr Jan 31, 2022
e786445
Rollup merge of #92021 - woodenarrow:br_single_fp_element, r=Mark-Sim…
matthiaskrgr Jan 31, 2022
e8d1d29
Rollup merge of #93090 - jyn514:errorkind-asstr, r=dtolnay
matthiaskrgr Jan 31, 2022
ddfd389
Rollup merge of #93154 - michaelwoerister:fix-generic-closure-and-gen…
matthiaskrgr Jan 31, 2022
ed845d6
Rollup merge of #93267 - lcnr:auto-trait-lint, r=nikomatsakis
matthiaskrgr Jan 31, 2022
511f6c4
Rollup merge of #93456 - bjorn3:remove_unnecessary_unsafe, r=michaelw…
matthiaskrgr Jan 31, 2022
4e49d11
Rollup merge of #93504 - solid-rs:fix-kmc-solid-stack-size, r=nagisa
matthiaskrgr Jan 31, 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
3 changes: 2 additions & 1 deletion library/std/src/sys/itron/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ const LIFECYCLE_DETACHED_OR_JOINED: usize = usize::MAX;
const LIFECYCLE_EXITED_OR_FINISHED_OR_JOIN_FINALIZE: usize = usize::MAX;
// there's no single value for `JOINING`

pub const DEFAULT_MIN_STACK_SIZE: usize = 1024 * crate::mem::size_of::<usize>();
// 64KiB for 32-bit ISAs, 128KiB for 64-bit ISAs.
pub const DEFAULT_MIN_STACK_SIZE: usize = 0x4000 * crate::mem::size_of::<usize>();

impl Thread {
/// # Safety
Expand Down