Skip to content

Commit 74d5c70

Browse files
committed
Auto merge of rust-lang#64369 - Centril:rollup-g875ozi, r=Centril
Rollup of 6 pull requests Successful merges: - rust-lang#64060 (Improve hygiene of `alloc::format!`) - rust-lang#64072 (Replace file_stem by file_name in rustdoc markdown) - rust-lang#64129 (vxWorks: set DEFAULT_MIN_STACK_SIZE to 256K and use min_stack to pass initial stack size to rtpSpawn) - rust-lang#64188 (rustc: Allow the cdylib crate type with wasm32-wasi) - rust-lang#64326 (Fixed documentation within c_str::from_ptr) - rust-lang#64349 (documentation for AtomicPtr CAS operations) Failed merges: r? @ghost
2 parents 34e82a7 + 4f1d50e commit 74d5c70

File tree

9 files changed

+21
-13
lines changed

9 files changed

+21
-13
lines changed

src/liballoc/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,9 @@ pub mod vec;
171171
mod std {
172172
pub use core::ops; // RangeFull
173173
}
174+
175+
#[doc(hidden)]
176+
#[unstable(feature = "liballoc_internals", issue = "0", reason = "implementation detail")]
177+
pub mod __export {
178+
pub use core::format_args;
179+
}

src/liballoc/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ macro_rules! vec {
9898
#[macro_export]
9999
#[stable(feature = "rust1", since = "1.0.0")]
100100
macro_rules! format {
101-
($($arg:tt)*) => ($crate::fmt::format(::core::format_args!($($arg)*)))
101+
($($arg:tt)*) => ($crate::fmt::format($crate::__export::format_args!($($arg)*)))
102102
}

src/libcore/sync/atomic.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -979,9 +979,8 @@ impl<T> AtomicPtr<T> {
979979
/// let some_ptr = AtomicPtr::new(ptr);
980980
///
981981
/// let other_ptr = &mut 10;
982-
/// let another_ptr = &mut 10;
983982
///
984-
/// let value = some_ptr.compare_and_swap(other_ptr, another_ptr, Ordering::Relaxed);
983+
/// let value = some_ptr.compare_and_swap(ptr, other_ptr, Ordering::Relaxed);
985984
/// ```
986985
#[inline]
987986
#[stable(feature = "rust1", since = "1.0.0")]
@@ -1021,9 +1020,8 @@ impl<T> AtomicPtr<T> {
10211020
/// let some_ptr = AtomicPtr::new(ptr);
10221021
///
10231022
/// let other_ptr = &mut 10;
1024-
/// let another_ptr = &mut 10;
10251023
///
1026-
/// let value = some_ptr.compare_exchange(other_ptr, another_ptr,
1024+
/// let value = some_ptr.compare_exchange(ptr, other_ptr,
10271025
/// Ordering::SeqCst, Ordering::Relaxed);
10281026
/// ```
10291027
#[inline]

src/librustc_target/spec/wasm32_wasi.rs

+4
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ pub fn target() -> Result<Target, String> {
9797
options.crt_static_default = true;
9898
options.crt_static_respected = true;
9999

100+
// Allow `+crt-static` to create a "cdylib" output which is just a wasm file
101+
// without a main function.
102+
options.crt_static_allows_dylibs = true;
103+
100104
Ok(Target {
101105
llvm_target: "wasm32-wasi".to_string(),
102106
target_endian: "little".to_string(),

src/librustdoc/markdown.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub fn render(
4343
edition: Edition
4444
) -> i32 {
4545
let mut output = options.output;
46-
output.push(input.file_stem().unwrap());
46+
output.push(input.file_name().unwrap());
4747
output.set_extension("html");
4848

4949
let mut css = String::new();

src/libstd/ffi/c_str.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -935,8 +935,10 @@ impl CStr {
935935
/// Wraps a raw C string with a safe C string wrapper.
936936
///
937937
/// This function will wrap the provided `ptr` with a `CStr` wrapper, which
938-
/// allows inspection and interoperation of non-owned C strings. This method
939-
/// is unsafe for a number of reasons:
938+
/// allows inspection and interoperation of non-owned C strings. The total
939+
/// size of the raw C string must be smaller than `isize::MAX` **bytes**
940+
/// in memory due to calling the `slice::from_raw_parts` function.
941+
/// This method is unsafe for a number of reasons:
940942
///
941943
/// * There is no guarantee to the validity of `ptr`.
942944
/// * The returned lifetime is not guaranteed to be the actual lifetime of

src/libstd/sys/vxworks/fast_thread_local.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Copyright (c) 2019 Wind River Systems, Inc.
2-
31
#![cfg(target_thread_local)]
42
#![unstable(feature = "thread_local_internals", issue = "0")]
53

src/libstd/sys/vxworks/process/process_vxworks.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use crate::sys;
55
use crate::sys::cvt;
66
use crate::sys::process::rtp;
77
use crate::sys::process::process_common::*;
8+
use crate::sys_common::thread;
89

910
////////////////////////////////////////////////////////////////////////////////
1011
// Command
@@ -57,8 +58,7 @@ impl Command {
5758
self.get_argv().as_ptr() as *const _, // argv
5859
*sys::os::environ() as *const *const c_char,
5960
100 as c_int, // initial priority
60-
0x16000, // initial stack size. 0 defaults
61-
// to 0x4000 in 32 bit and 0x8000 in 64 bit
61+
thread::min_stack(), // initial stack size.
6262
0, // options
6363
0 // task options
6464
);

src/libstd/sys/vxworks/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::time::Duration;
88

99
use crate::sys_common::thread::*;
1010

11-
pub const DEFAULT_MIN_STACK_SIZE: usize = 2 * 1024 * 1024;
11+
pub const DEFAULT_MIN_STACK_SIZE: usize = 0x40000; // 256K
1212

1313
pub struct Thread {
1414
id: libc::pthread_t,

0 commit comments

Comments
 (0)