Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d32d1c1
Size optimize int formatting
diondokter May 27, 2024
cdccf52
Clarify our tier 1 Windows Server support
ChrisDenton Jun 5, 2024
3f892f8
Clarify an `x fmt` error.
nnethercote Jun 5, 2024
8781074
Raise `DEFAULT_MIN_STACK_SIZE` to at least 64KiB
workingjubilee Jun 6, 2024
5772181
Migrate `run-make/symlinked-rlib` to `rmake.rs`
GuillaumeGomez Jun 5, 2024
7ad5ebc
Migrate `run-make/manual-crate-name` to `rmake.rs`
GuillaumeGomez Jun 6, 2024
c7ced1b
Make the panic info more useful
oli-obk Sep 6, 2023
0a4176a
Revert "Rollup merge of #124976 - petrochenkov:usedcrates, r=oli-obk"
lqd Jun 6, 2024
9ddf572
add non-regression run-make test for issues 125474, 125484, and 125646
lqd May 29, 2024
dc91ad0
Port `tests/run-make-fulldeps/obtain-borrowck` to ui-fulldeps
Zalathar Jun 5, 2024
b09f5a1
Rollup merge of #125606 - diondokter:opt-size-int-fmt, r=cuviper
GuillaumeGomez Jun 6, 2024
8ff5334
Rollup merge of #126015 - GuillaumeGomez:migrate-run-make-symlinked-r…
GuillaumeGomez Jun 6, 2024
805d6a5
Rollup merge of #126034 - ChrisDenton:winsupport, r=ehuss
GuillaumeGomez Jun 6, 2024
b00aa85
Rollup merge of #126035 - oli-obk:query_macro_errors, r=fmease
GuillaumeGomez Jun 6, 2024
8f55122
Rollup merge of #126051 - nnethercote:clarify-x-fmt-error, r=Nilstrieb
GuillaumeGomez Jun 6, 2024
5ef362f
Rollup merge of #126059 - workingjubilee:stack-nothing-higher, r=Chri…
GuillaumeGomez Jun 6, 2024
4e79737
Rollup merge of #126064 - GuillaumeGomez:migrate-run-make-manual-crat…
GuillaumeGomez Jun 6, 2024
bb2d768
Rollup merge of #126068 - lqd:revert-124976, r=petrochenkov
GuillaumeGomez Jun 6, 2024
c824159
Rollup merge of #126073 - Zalathar:fulldeps-borrowck, r=jieyouxu
GuillaumeGomez Jun 6, 2024
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
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/uefi/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::time::Duration;

pub struct Thread(!);

pub const DEFAULT_MIN_STACK_SIZE: usize = 4096;
pub const DEFAULT_MIN_STACK_SIZE: usize = 64 * 1024;

impl Thread {
// unsafe: see thread::Builder::spawn_unchecked for safety requirements
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/unsupported/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::time::Duration;

pub struct Thread(!);

pub const DEFAULT_MIN_STACK_SIZE: usize = 4096;
pub const DEFAULT_MIN_STACK_SIZE: usize = 64 * 1024;

impl Thread {
// unsafe: see thread::Builder::spawn_unchecked for safety requirements
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/wasi/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ cfg_if::cfg_if! {
}
}

pub const DEFAULT_MIN_STACK_SIZE: usize = 4096;
pub const DEFAULT_MIN_STACK_SIZE: usize = 64 * 1024;

impl Thread {
// unsafe: see thread::Builder::spawn_unchecked for safety requirements
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/wasm/atomics/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::time::Duration;

pub struct Thread(!);

pub const DEFAULT_MIN_STACK_SIZE: usize = 4096;
pub const DEFAULT_MIN_STACK_SIZE: usize = 64 * 1024;

impl Thread {
// unsafe: see thread::Builder::spawn_unchecked for safety requirements
Expand Down