Remove various double spaces in source comments.
This commit is contained in:
parent
44a500c8c1
commit
0b35f448f8
32 changed files with 66 additions and 66 deletions
|
@ -20,7 +20,7 @@ use core::marker::Destruct;
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
||||||
extern "Rust" {
|
extern "Rust" {
|
||||||
// These are the magic symbols to call the global allocator. rustc generates
|
// These are the magic symbols to call the global allocator. rustc generates
|
||||||
// them to call `__rg_alloc` etc. if there is a `#[global_allocator]` attribute
|
// them to call `__rg_alloc` etc. if there is a `#[global_allocator]` attribute
|
||||||
// (the code expanding that attribute macro generates those functions), or to call
|
// (the code expanding that attribute macro generates those functions), or to call
|
||||||
// the default implementations in std (`__rdl_alloc` etc. in `library/std/src/alloc.rs`)
|
// the default implementations in std (`__rdl_alloc` etc. in `library/std/src/alloc.rs`)
|
||||||
|
@ -353,7 +353,7 @@ pub(crate) const unsafe fn box_free<T: ?Sized, A: ~const Allocator + ~const Dest
|
||||||
|
|
||||||
#[cfg(not(no_global_oom_handling))]
|
#[cfg(not(no_global_oom_handling))]
|
||||||
extern "Rust" {
|
extern "Rust" {
|
||||||
// This is the magic symbol to call the global alloc error handler. rustc generates
|
// This is the magic symbol to call the global alloc error handler. rustc generates
|
||||||
// it to call `__rg_oom` if there is a `#[alloc_error_handler]`, or to call the
|
// it to call `__rg_oom` if there is a `#[alloc_error_handler]`, or to call the
|
||||||
// default implementations below (`__rdl_oom`) otherwise.
|
// default implementations below (`__rdl_oom`) otherwise.
|
||||||
fn __rust_alloc_error_handler(size: usize, align: usize) -> !;
|
fn __rust_alloc_error_handler(size: usize, align: usize) -> !;
|
||||||
|
|
|
@ -2179,7 +2179,7 @@ pub struct Weak<T: ?Sized> {
|
||||||
// This is a `NonNull` to allow optimizing the size of this type in enums,
|
// This is a `NonNull` to allow optimizing the size of this type in enums,
|
||||||
// but it is not necessarily a valid pointer.
|
// but it is not necessarily a valid pointer.
|
||||||
// `Weak::new` sets this to `usize::MAX` so that it doesn’t need
|
// `Weak::new` sets this to `usize::MAX` so that it doesn’t need
|
||||||
// to allocate space on the heap. That's not a value a real pointer
|
// to allocate space on the heap. That's not a value a real pointer
|
||||||
// will ever have because RcBox has alignment at least 2.
|
// will ever have because RcBox has alignment at least 2.
|
||||||
// This is only possible when `T: Sized`; unsized `T` never dangle.
|
// This is only possible when `T: Sized`; unsized `T` never dangle.
|
||||||
ptr: NonNull<RcBox<T>>,
|
ptr: NonNull<RcBox<T>>,
|
||||||
|
|
|
@ -295,7 +295,7 @@ pub struct Weak<T: ?Sized> {
|
||||||
// This is a `NonNull` to allow optimizing the size of this type in enums,
|
// This is a `NonNull` to allow optimizing the size of this type in enums,
|
||||||
// but it is not necessarily a valid pointer.
|
// but it is not necessarily a valid pointer.
|
||||||
// `Weak::new` sets this to `usize::MAX` so that it doesn’t need
|
// `Weak::new` sets this to `usize::MAX` so that it doesn’t need
|
||||||
// to allocate space on the heap. That's not a value a real pointer
|
// to allocate space on the heap. That's not a value a real pointer
|
||||||
// will ever have because RcBox has alignment at least 2.
|
// will ever have because RcBox has alignment at least 2.
|
||||||
// This is only possible when `T: Sized`; unsized `T` never dangle.
|
// This is only possible when `T: Sized`; unsized `T` never dangle.
|
||||||
ptr: NonNull<ArcInner<T>>,
|
ptr: NonNull<ArcInner<T>>,
|
||||||
|
@ -1656,7 +1656,7 @@ impl<T: ?Sized> Arc<T> {
|
||||||
//
|
//
|
||||||
// The acquire label here ensures a happens-before relationship with any
|
// The acquire label here ensures a happens-before relationship with any
|
||||||
// writes to `strong` (in particular in `Weak::upgrade`) prior to decrements
|
// writes to `strong` (in particular in `Weak::upgrade`) prior to decrements
|
||||||
// of the `weak` count (via `Weak::drop`, which uses release). If the upgraded
|
// of the `weak` count (via `Weak::drop`, which uses release). If the upgraded
|
||||||
// weak ref was never dropped, the CAS here will fail so we do not care to synchronize.
|
// weak ref was never dropped, the CAS here will fail so we do not care to synchronize.
|
||||||
if self.inner().weak.compare_exchange(1, usize::MAX, Acquire, Relaxed).is_ok() {
|
if self.inner().weak.compare_exchange(1, usize::MAX, Acquire, Relaxed).is_ok() {
|
||||||
// This needs to be an `Acquire` to synchronize with the decrement of the `strong`
|
// This needs to be an `Acquire` to synchronize with the decrement of the `strong`
|
||||||
|
@ -1712,7 +1712,7 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
// This fence is needed to prevent reordering of use of the data and
|
// This fence is needed to prevent reordering of use of the data and
|
||||||
// deletion of the data. Because it is marked `Release`, the decreasing
|
// deletion of the data. Because it is marked `Release`, the decreasing
|
||||||
// of the reference count synchronizes with this `Acquire` fence. This
|
// of the reference count synchronizes with this `Acquire` fence. This
|
||||||
// means that use of the data happens before decreasing the reference
|
// means that use of the data happens before decreasing the reference
|
||||||
// count, which happens before this fence, which happens before the
|
// count, which happens before this fence, which happens before the
|
||||||
|
@ -2172,7 +2172,7 @@ impl<T: ?Sized> Clone for Weak<T> {
|
||||||
} else {
|
} else {
|
||||||
return Weak { ptr: self.ptr };
|
return Weak { ptr: self.ptr };
|
||||||
};
|
};
|
||||||
// See comments in Arc::clone() for why this is relaxed. This can use a
|
// See comments in Arc::clone() for why this is relaxed. This can use a
|
||||||
// fetch_add (ignoring the lock) because the weak count is only locked
|
// fetch_add (ignoring the lock) because the weak count is only locked
|
||||||
// where are *no other* weak pointers in existence. (So we can't be
|
// where are *no other* weak pointers in existence. (So we can't be
|
||||||
// running this code in that case).
|
// running this code in that case).
|
||||||
|
|
|
@ -40,7 +40,7 @@ pub struct IntoIter<
|
||||||
// to avoid dropping the allocator twice we need to wrap it into ManuallyDrop
|
// to avoid dropping the allocator twice we need to wrap it into ManuallyDrop
|
||||||
pub(super) alloc: ManuallyDrop<A>,
|
pub(super) alloc: ManuallyDrop<A>,
|
||||||
pub(super) ptr: *const T,
|
pub(super) ptr: *const T,
|
||||||
pub(super) end: *const T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
pub(super) end: *const T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
||||||
// ptr == end is a quick test for the Iterator being empty, that works
|
// ptr == end is a quick test for the Iterator being empty, that works
|
||||||
// for both ZST and non-ZST.
|
// for both ZST and non-ZST.
|
||||||
}
|
}
|
||||||
|
@ -146,9 +146,9 @@ impl<T, A: Allocator> IntoIter<T, A> {
|
||||||
let mut this = ManuallyDrop::new(self);
|
let mut this = ManuallyDrop::new(self);
|
||||||
|
|
||||||
// SAFETY: This allocation originally came from a `Vec`, so it passes
|
// SAFETY: This allocation originally came from a `Vec`, so it passes
|
||||||
// all those checks. We have `this.buf` ≤ `this.ptr` ≤ `this.end`,
|
// all those checks. We have `this.buf` ≤ `this.ptr` ≤ `this.end`,
|
||||||
// so the `sub_ptr`s below cannot wrap, and will produce a well-formed
|
// so the `sub_ptr`s below cannot wrap, and will produce a well-formed
|
||||||
// range. `end` ≤ `buf + cap`, so the range will be in-bounds.
|
// range. `end` ≤ `buf + cap`, so the range will be in-bounds.
|
||||||
// Taking `alloc` is ok because nothing else is going to look at it,
|
// Taking `alloc` is ok because nothing else is going to look at it,
|
||||||
// since our `Drop` impl isn't going to run so there's no more code.
|
// since our `Drop` impl isn't going to run so there's no more code.
|
||||||
unsafe {
|
unsafe {
|
||||||
|
|
|
@ -57,7 +57,7 @@ unsafe impl<T: IsZero, const N: usize> IsZero for [T; N] {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn is_zero(&self) -> bool {
|
fn is_zero(&self) -> bool {
|
||||||
// Because this is generated as a runtime check, it's not obvious that
|
// Because this is generated as a runtime check, it's not obvious that
|
||||||
// it's worth doing if the array is really long. The threshold here
|
// it's worth doing if the array is really long. The threshold here
|
||||||
// is largely arbitrary, but was picked because as of 2022-07-01 LLVM
|
// is largely arbitrary, but was picked because as of 2022-07-01 LLVM
|
||||||
// fails to const-fold the check in `vec![[1; 32]; n]`
|
// fails to const-fold the check in `vec![[1; 32]; n]`
|
||||||
// See https://github.com/rust-lang/rust/pull/97581#issuecomment-1166628022
|
// See https://github.com/rust-lang/rust/pull/97581#issuecomment-1166628022
|
||||||
|
|
|
@ -2429,7 +2429,7 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
|
||||||
self.reserve(range.len());
|
self.reserve(range.len());
|
||||||
|
|
||||||
// SAFETY:
|
// SAFETY:
|
||||||
// - `slice::range` guarantees that the given range is valid for indexing self
|
// - `slice::range` guarantees that the given range is valid for indexing self
|
||||||
unsafe {
|
unsafe {
|
||||||
self.spec_extend_from_within(range);
|
self.spec_extend_from_within(range);
|
||||||
}
|
}
|
||||||
|
@ -2686,7 +2686,7 @@ impl<T: Clone, A: Allocator + Clone> Clone for Vec<T, A> {
|
||||||
|
|
||||||
// HACK(japaric): with cfg(test) the inherent `[T]::to_vec` method, which is
|
// HACK(japaric): with cfg(test) the inherent `[T]::to_vec` method, which is
|
||||||
// required for this method definition, is not available. Instead use the
|
// required for this method definition, is not available. Instead use the
|
||||||
// `slice::to_vec` function which is only available with cfg(test)
|
// `slice::to_vec` function which is only available with cfg(test)
|
||||||
// NB see the slice::hack module in slice.rs for more information
|
// NB see the slice::hack module in slice.rs for more information
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
|
|
|
@ -1849,7 +1849,7 @@ fn test_stable_pointers() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Test that, if we reserved enough space, adding and removing elements does not
|
// Test that, if we reserved enough space, adding and removing elements does not
|
||||||
// invalidate references into the vector (such as `v0`). This test also
|
// invalidate references into the vector (such as `v0`). This test also
|
||||||
// runs in Miri, which would detect such problems.
|
// runs in Miri, which would detect such problems.
|
||||||
// Note that this test does *not* constitute a stable guarantee that all these functions do not
|
// Note that this test does *not* constitute a stable guarantee that all these functions do not
|
||||||
// reallocate! Only what is explicitly documented at
|
// reallocate! Only what is explicitly documented at
|
||||||
|
|
|
@ -109,8 +109,8 @@ impl<T, const N: usize> IntoIter<T, N> {
|
||||||
/// use std::array::IntoIter;
|
/// use std::array::IntoIter;
|
||||||
/// use std::mem::MaybeUninit;
|
/// use std::mem::MaybeUninit;
|
||||||
///
|
///
|
||||||
/// # // Hi! Thanks for reading the code. This is restricted to `Copy` because
|
/// # // Hi! Thanks for reading the code. This is restricted to `Copy` because
|
||||||
/// # // otherwise it could leak. A fully-general version this would need a drop
|
/// # // otherwise it could leak. A fully-general version this would need a drop
|
||||||
/// # // guard to handle panics from the iterator, but this works for an example.
|
/// # // guard to handle panics from the iterator, but this works for an example.
|
||||||
/// fn next_chunk<T: Copy, const N: usize>(
|
/// fn next_chunk<T: Copy, const N: usize>(
|
||||||
/// it: &mut impl Iterator<Item = T>,
|
/// it: &mut impl Iterator<Item = T>,
|
||||||
|
@ -211,7 +211,7 @@ impl<T, const N: usize> IntoIter<T, N> {
|
||||||
let initialized = 0..0;
|
let initialized = 0..0;
|
||||||
|
|
||||||
// SAFETY: We're telling it that none of the elements are initialized,
|
// SAFETY: We're telling it that none of the elements are initialized,
|
||||||
// which is trivially true. And ∀N: usize, 0 <= N.
|
// which is trivially true. And ∀N: usize, 0 <= N.
|
||||||
unsafe { Self::new_unchecked(buffer, initialized) }
|
unsafe { Self::new_unchecked(buffer, initialized) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -756,7 +756,7 @@ impl<A: Step> Iterator for ops::Range<A> {
|
||||||
where
|
where
|
||||||
Self: TrustedRandomAccessNoCoerce,
|
Self: TrustedRandomAccessNoCoerce,
|
||||||
{
|
{
|
||||||
// SAFETY: The TrustedRandomAccess contract requires that callers only pass an index
|
// SAFETY: The TrustedRandomAccess contract requires that callers only pass an index
|
||||||
// that is in bounds.
|
// that is in bounds.
|
||||||
// Additionally Self: TrustedRandomAccess is only implemented for Copy types
|
// Additionally Self: TrustedRandomAccess is only implemented for Copy types
|
||||||
// which means even repeated reads of the same index would be safe.
|
// which means even repeated reads of the same index would be safe.
|
||||||
|
|
|
@ -1538,7 +1538,7 @@ macro_rules! int_impl {
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// #![feature(bigint_helper_methods)]
|
/// #![feature(bigint_helper_methods)]
|
||||||
/// // Only the most significant word is signed.
|
/// // Only the most significant word is signed.
|
||||||
/// //
|
/// //
|
||||||
#[doc = concat!("// 10 MAX (a = 10 × 2^", stringify!($BITS), " + 2^", stringify!($BITS), " - 1)")]
|
#[doc = concat!("// 10 MAX (a = 10 × 2^", stringify!($BITS), " + 2^", stringify!($BITS), " - 1)")]
|
||||||
#[doc = concat!("// + -5 9 (b = -5 × 2^", stringify!($BITS), " + 9)")]
|
#[doc = concat!("// + -5 9 (b = -5 × 2^", stringify!($BITS), " + 9)")]
|
||||||
|
@ -1646,7 +1646,7 @@ macro_rules! int_impl {
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// #![feature(bigint_helper_methods)]
|
/// #![feature(bigint_helper_methods)]
|
||||||
/// // Only the most significant word is signed.
|
/// // Only the most significant word is signed.
|
||||||
/// //
|
/// //
|
||||||
#[doc = concat!("// 6 8 (a = 6 × 2^", stringify!($BITS), " + 8)")]
|
#[doc = concat!("// 6 8 (a = 6 × 2^", stringify!($BITS), " + 8)")]
|
||||||
#[doc = concat!("// - -5 9 (b = -5 × 2^", stringify!($BITS), " + 9)")]
|
#[doc = concat!("// - -5 9 (b = -5 × 2^", stringify!($BITS), " + 9)")]
|
||||||
|
|
|
@ -1701,7 +1701,7 @@ pub(crate) const unsafe fn align_offset<T: Sized>(p: *const T, a: usize) -> usiz
|
||||||
// offset is not a multiple of `stride`, the input pointer was misaligned and no pointer
|
// offset is not a multiple of `stride`, the input pointer was misaligned and no pointer
|
||||||
// offset will be able to produce a `p` aligned to the specified `a`.
|
// offset will be able to produce a `p` aligned to the specified `a`.
|
||||||
//
|
//
|
||||||
// The naive `-p (mod a)` equation inhibits LLVM's ability to select instructions
|
// The naive `-p (mod a)` equation inhibits LLVM's ability to select instructions
|
||||||
// like `lea`. We compute `(round_up_to_next_alignment(p, a) - p)` instead. This
|
// like `lea`. We compute `(round_up_to_next_alignment(p, a) - p)` instead. This
|
||||||
// redistributes operations around the load-bearing, but pessimizing `and` instruction
|
// redistributes operations around the load-bearing, but pessimizing `and` instruction
|
||||||
// sufficiently for LLVM to be able to utilize the various optimizations it knows about.
|
// sufficiently for LLVM to be able to utilize the various optimizations it knows about.
|
||||||
|
|
|
@ -65,7 +65,7 @@ fn size_from_ptr<T>(_: *const T) -> usize {
|
||||||
#[must_use = "iterators are lazy and do nothing unless consumed"]
|
#[must_use = "iterators are lazy and do nothing unless consumed"]
|
||||||
pub struct Iter<'a, T: 'a> {
|
pub struct Iter<'a, T: 'a> {
|
||||||
ptr: NonNull<T>,
|
ptr: NonNull<T>,
|
||||||
end: *const T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
end: *const T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
||||||
// ptr == end is a quick test for the Iterator being empty, that works
|
// ptr == end is a quick test for the Iterator being empty, that works
|
||||||
// for both ZST and non-ZST.
|
// for both ZST and non-ZST.
|
||||||
_marker: PhantomData<&'a T>,
|
_marker: PhantomData<&'a T>,
|
||||||
|
@ -186,7 +186,7 @@ impl<T> AsRef<[T]> for Iter<'_, T> {
|
||||||
#[must_use = "iterators are lazy and do nothing unless consumed"]
|
#[must_use = "iterators are lazy and do nothing unless consumed"]
|
||||||
pub struct IterMut<'a, T: 'a> {
|
pub struct IterMut<'a, T: 'a> {
|
||||||
ptr: NonNull<T>,
|
ptr: NonNull<T>,
|
||||||
end: *mut T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
end: *mut T, // If T is a ZST, this is actually ptr+len. This encoding is picked so that
|
||||||
// ptr == end is a quick test for the Iterator being empty, that works
|
// ptr == end is a quick test for the Iterator being empty, that works
|
||||||
// for both ZST and non-ZST.
|
// for both ZST and non-ZST.
|
||||||
_marker: PhantomData<&'a mut T>,
|
_marker: PhantomData<&'a mut T>,
|
||||||
|
|
|
@ -23,7 +23,7 @@ macro_rules! len {
|
||||||
$self.end.addr().wrapping_sub(start.as_ptr().addr())
|
$self.end.addr().wrapping_sub(start.as_ptr().addr())
|
||||||
} else {
|
} else {
|
||||||
// We know that `start <= end`, so can do better than `offset_from`,
|
// We know that `start <= end`, so can do better than `offset_from`,
|
||||||
// which needs to deal in signed. By setting appropriate flags here
|
// which needs to deal in signed. By setting appropriate flags here
|
||||||
// we can tell LLVM this, which helps it remove bounds checks.
|
// we can tell LLVM this, which helps it remove bounds checks.
|
||||||
// SAFETY: By the type invariant, `start <= end`
|
// SAFETY: By the type invariant, `start <= end`
|
||||||
let diff = unsafe { unchecked_sub($self.end.addr(), start.as_ptr().addr()) };
|
let diff = unsafe { unchecked_sub($self.end.addr(), start.as_ptr().addr()) };
|
||||||
|
|
|
@ -703,7 +703,7 @@ impl<T> [T] {
|
||||||
|
|
||||||
// Because this function is first compiled in isolation,
|
// Because this function is first compiled in isolation,
|
||||||
// this check tells LLVM that the indexing below is
|
// this check tells LLVM that the indexing below is
|
||||||
// in-bounds. Then after inlining -- once the actual
|
// in-bounds. Then after inlining -- once the actual
|
||||||
// lengths of the slices are known -- it's removed.
|
// lengths of the slices are known -- it's removed.
|
||||||
let (a, b) = (&mut a[..n], &mut b[..n]);
|
let (a, b) = (&mut a[..n], &mut b[..n]);
|
||||||
|
|
||||||
|
@ -2476,7 +2476,7 @@ impl<T> [T] {
|
||||||
let mid = left + size / 2;
|
let mid = left + size / 2;
|
||||||
|
|
||||||
// SAFETY: the while condition means `size` is strictly positive, so
|
// SAFETY: the while condition means `size` is strictly positive, so
|
||||||
// `size/2 < size`. Thus `left + size/2 < left + size`, which
|
// `size/2 < size`. Thus `left + size/2 < left + size`, which
|
||||||
// coupled with the `left + size <= self.len()` invariant means
|
// coupled with the `left + size <= self.len()` invariant means
|
||||||
// we have `left + size/2 < self.len()`, and this is in-bounds.
|
// we have `left + size/2 < self.len()`, and this is in-bounds.
|
||||||
let cmp = f(unsafe { self.get_unchecked(mid) });
|
let cmp = f(unsafe { self.get_unchecked(mid) });
|
||||||
|
|
|
@ -18,9 +18,9 @@ struct CopyOnDrop<T> {
|
||||||
|
|
||||||
impl<T> Drop for CopyOnDrop<T> {
|
impl<T> Drop for CopyOnDrop<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
// SAFETY: This is a helper class.
|
// SAFETY: This is a helper class.
|
||||||
// Please refer to its usage for correctness.
|
// Please refer to its usage for correctness.
|
||||||
// Namely, one must be sure that `src` and `dst` does not overlap as required by `ptr::copy_nonoverlapping`.
|
// Namely, one must be sure that `src` and `dst` does not overlap as required by `ptr::copy_nonoverlapping`.
|
||||||
unsafe {
|
unsafe {
|
||||||
ptr::copy_nonoverlapping(self.src, self.dest, 1);
|
ptr::copy_nonoverlapping(self.src, self.dest, 1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1488,7 +1488,7 @@ mod slice_index {
|
||||||
// optional:
|
// optional:
|
||||||
//
|
//
|
||||||
// one or more similar inputs for which data[input] succeeds,
|
// one or more similar inputs for which data[input] succeeds,
|
||||||
// and the corresponding output as an array. This helps validate
|
// and the corresponding output as an array. This helps validate
|
||||||
// "critical points" where an input range straddles the boundary
|
// "critical points" where an input range straddles the boundary
|
||||||
// between valid and invalid.
|
// between valid and invalid.
|
||||||
// (such as the input `len..len`, which is just barely valid)
|
// (such as the input `len..len`, which is just barely valid)
|
||||||
|
|
|
@ -288,8 +288,8 @@ fn test_buffered_reader_seek_underflow_discard_buffer_between_seeks() {
|
||||||
let mut reader = BufReader::with_capacity(5, ErrAfterFirstSeekReader { first_seek: true });
|
let mut reader = BufReader::with_capacity(5, ErrAfterFirstSeekReader { first_seek: true });
|
||||||
assert_eq!(reader.fill_buf().ok(), Some(&[0, 0, 0, 0, 0][..]));
|
assert_eq!(reader.fill_buf().ok(), Some(&[0, 0, 0, 0, 0][..]));
|
||||||
|
|
||||||
// The following seek will require two underlying seeks. The first will
|
// The following seek will require two underlying seeks. The first will
|
||||||
// succeed but the second will fail. This should still invalidate the
|
// succeed but the second will fail. This should still invalidate the
|
||||||
// buffer.
|
// buffer.
|
||||||
assert!(reader.seek(SeekFrom::Current(i64::MIN)).is_err());
|
assert!(reader.seek(SeekFrom::Current(i64::MIN)).is_err());
|
||||||
assert_eq!(reader.buffer().len(), 0);
|
assert_eq!(reader.buffer().len(), 0);
|
||||||
|
|
|
@ -100,7 +100,7 @@ impl BorrowedFd<'_> {
|
||||||
|
|
||||||
// For ESP-IDF, F_DUPFD is used instead, because the CLOEXEC semantics
|
// For ESP-IDF, F_DUPFD is used instead, because the CLOEXEC semantics
|
||||||
// will never be supported, as this is a bare metal framework with
|
// will never be supported, as this is a bare metal framework with
|
||||||
// no capabilities for multi-process execution. While F_DUPFD is also
|
// no capabilities for multi-process execution. While F_DUPFD is also
|
||||||
// not supported yet, it might be (currently it returns ENOSYS).
|
// not supported yet, it might be (currently it returns ENOSYS).
|
||||||
#[cfg(target_os = "espidf")]
|
#[cfg(target_os = "espidf")]
|
||||||
let cmd = libc::F_DUPFD;
|
let cmd = libc::F_DUPFD;
|
||||||
|
|
|
@ -306,11 +306,11 @@ pub mod panic_count {
|
||||||
// and after increase and decrease, but not necessarily during their execution.
|
// and after increase and decrease, but not necessarily during their execution.
|
||||||
//
|
//
|
||||||
// Additionally, the top bit of GLOBAL_PANIC_COUNT (GLOBAL_ALWAYS_ABORT_FLAG)
|
// Additionally, the top bit of GLOBAL_PANIC_COUNT (GLOBAL_ALWAYS_ABORT_FLAG)
|
||||||
// records whether panic::always_abort() has been called. This can only be
|
// records whether panic::always_abort() has been called. This can only be
|
||||||
// set, never cleared.
|
// set, never cleared.
|
||||||
// panic::always_abort() is usually called to prevent memory allocations done by
|
// panic::always_abort() is usually called to prevent memory allocations done by
|
||||||
// the panic handling in the child created by `libc::fork`.
|
// the panic handling in the child created by `libc::fork`.
|
||||||
// Memory allocations performed in a child created with `libc::fork` are undefined
|
// Memory allocations performed in a child created with `libc::fork` are undefined
|
||||||
// behavior in most operating systems.
|
// behavior in most operating systems.
|
||||||
// Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory
|
// Accessing LOCAL_PANIC_COUNT in a child created by `libc::fork` would lead to a memory
|
||||||
// allocation. Only GLOBAL_PANIC_COUNT can be accessed in this situation. This is
|
// allocation. Only GLOBAL_PANIC_COUNT can be accessed in this situation. This is
|
||||||
|
|
|
@ -607,7 +607,7 @@ pub struct Components<'a> {
|
||||||
|
|
||||||
// true if path *physically* has a root separator; for most Windows
|
// true if path *physically* has a root separator; for most Windows
|
||||||
// prefixes, it may have a "logical" root separator for the purposes of
|
// prefixes, it may have a "logical" root separator for the purposes of
|
||||||
// normalization, e.g., \\server\share == \\server\share\.
|
// normalization, e.g., \\server\share == \\server\share\.
|
||||||
has_physical_root: bool,
|
has_physical_root: bool,
|
||||||
|
|
||||||
// The iterator is double-ended, and these two states keep track of what has
|
// The iterator is double-ended, and these two states keep track of what has
|
||||||
|
|
|
@ -294,7 +294,7 @@ impl Drop for Thread {
|
||||||
// Terminate and delete the task
|
// Terminate and delete the task
|
||||||
// Safety: `self.task` still represents a task we own (because
|
// Safety: `self.task` still represents a task we own (because
|
||||||
// this method or `join_inner` is called only once for
|
// this method or `join_inner` is called only once for
|
||||||
// each `Thread`). The task indicated that it's safe to
|
// each `Thread`). The task indicated that it's safe to
|
||||||
// delete by entering the `FINISHED` state.
|
// delete by entering the `FINISHED` state.
|
||||||
unsafe { terminate_and_delete_task(self.task) };
|
unsafe { terminate_and_delete_task(self.task) };
|
||||||
|
|
||||||
|
|
|
@ -600,13 +600,13 @@ impl Iterator for ReadDir {
|
||||||
loop {
|
loop {
|
||||||
// As of POSIX.1-2017, readdir() is not required to be thread safe; only
|
// As of POSIX.1-2017, readdir() is not required to be thread safe; only
|
||||||
// readdir_r() is. However, readdir_r() cannot correctly handle platforms
|
// readdir_r() is. However, readdir_r() cannot correctly handle platforms
|
||||||
// with unlimited or variable NAME_MAX. Many modern platforms guarantee
|
// with unlimited or variable NAME_MAX. Many modern platforms guarantee
|
||||||
// thread safety for readdir() as long an individual DIR* is not accessed
|
// thread safety for readdir() as long an individual DIR* is not accessed
|
||||||
// concurrently, which is sufficient for Rust.
|
// concurrently, which is sufficient for Rust.
|
||||||
super::os::set_errno(0);
|
super::os::set_errno(0);
|
||||||
let entry_ptr = readdir64(self.inner.dirp.0);
|
let entry_ptr = readdir64(self.inner.dirp.0);
|
||||||
if entry_ptr.is_null() {
|
if entry_ptr.is_null() {
|
||||||
// We either encountered an error, or reached the end. Either way,
|
// We either encountered an error, or reached the end. Either way,
|
||||||
// the next call to next() should return None.
|
// the next call to next() should return None.
|
||||||
self.end_of_stream = true;
|
self.end_of_stream = true;
|
||||||
|
|
||||||
|
|
|
@ -587,7 +587,7 @@ pub(super) fn copy_regular_files(reader: RawFd, writer: RawFd, max_len: u64) ->
|
||||||
// - copy_file_range file is immutable or syscall is blocked by seccomp¹ (EPERM)
|
// - copy_file_range file is immutable or syscall is blocked by seccomp¹ (EPERM)
|
||||||
// - copy_file_range cannot be used with pipes or device nodes (EINVAL)
|
// - copy_file_range cannot be used with pipes or device nodes (EINVAL)
|
||||||
// - the writer fd was opened with O_APPEND (EBADF²)
|
// - the writer fd was opened with O_APPEND (EBADF²)
|
||||||
// and no bytes were written successfully yet. (All these errnos should
|
// and no bytes were written successfully yet. (All these errnos should
|
||||||
// not be returned if something was already written, but they happen in
|
// not be returned if something was already written, but they happen in
|
||||||
// the wild, see #91152.)
|
// the wild, see #91152.)
|
||||||
//
|
//
|
||||||
|
|
|
@ -262,7 +262,7 @@ impl ExitStatus {
|
||||||
// available on Fuchsia.
|
// available on Fuchsia.
|
||||||
//
|
//
|
||||||
// It does not appear that Fuchsia is Unix-like enough to implement ExitStatus (or indeed many
|
// It does not appear that Fuchsia is Unix-like enough to implement ExitStatus (or indeed many
|
||||||
// other things from std::os::unix) properly. This veneer is always going to be a bodge. So
|
// other things from std::os::unix) properly. This veneer is always going to be a bodge. So
|
||||||
// while I don't know if these implementations are actually correct, I think they will do for
|
// while I don't know if these implementations are actually correct, I think they will do for
|
||||||
// now at least.
|
// now at least.
|
||||||
pub fn core_dumped(&self) -> bool {
|
pub fn core_dumped(&self) -> bool {
|
||||||
|
@ -277,9 +277,9 @@ impl ExitStatus {
|
||||||
|
|
||||||
pub fn into_raw(&self) -> c_int {
|
pub fn into_raw(&self) -> c_int {
|
||||||
// We don't know what someone who calls into_raw() will do with this value, but it should
|
// We don't know what someone who calls into_raw() will do with this value, but it should
|
||||||
// have the conventional Unix representation. Despite the fact that this is not
|
// have the conventional Unix representation. Despite the fact that this is not
|
||||||
// standardised in SuS or POSIX, all Unix systems encode the signal and exit status the
|
// standardised in SuS or POSIX, all Unix systems encode the signal and exit status the
|
||||||
// same way. (Ie the WIFEXITED, WEXITSTATUS etc. macros have identical behaviour on every
|
// same way. (Ie the WIFEXITED, WEXITSTATUS etc. macros have identical behaviour on every
|
||||||
// Unix.)
|
// Unix.)
|
||||||
//
|
//
|
||||||
// The caller of `std::os::unix::into_raw` is probably wanting a Unix exit status, and may
|
// The caller of `std::os::unix::into_raw` is probably wanting a Unix exit status, and may
|
||||||
|
@ -287,14 +287,14 @@ impl ExitStatus {
|
||||||
// different Unix variant.
|
// different Unix variant.
|
||||||
//
|
//
|
||||||
// The other view would be to say that the caller on Fuchsia ought to know that `into_raw`
|
// The other view would be to say that the caller on Fuchsia ought to know that `into_raw`
|
||||||
// will give a raw Fuchsia status (whatever that is - I don't know, personally). That is
|
// will give a raw Fuchsia status (whatever that is - I don't know, personally). That is
|
||||||
// not possible here because we must return a c_int because that's what Unix (including
|
// not possible here because we must return a c_int because that's what Unix (including
|
||||||
// SuS and POSIX) say a wait status is, but Fuchsia apparently uses a u64, so it won't
|
// SuS and POSIX) say a wait status is, but Fuchsia apparently uses a u64, so it won't
|
||||||
// necessarily fit.
|
// necessarily fit.
|
||||||
//
|
//
|
||||||
// It seems to me that the right answer would be to provide std::os::fuchsia with its
|
// It seems to me that the right answer would be to provide std::os::fuchsia with its
|
||||||
// own ExitStatusExt, rather that trying to provide a not very convincing imitation of
|
// own ExitStatusExt, rather that trying to provide a not very convincing imitation of
|
||||||
// Unix. Ie, std::os::unix::process:ExitStatusExt ought not to exist on Fuchsia. But
|
// Unix. Ie, std::os::unix::process:ExitStatusExt ought not to exist on Fuchsia. But
|
||||||
// fixing this up that is beyond the scope of my efforts now.
|
// fixing this up that is beyond the scope of my efforts now.
|
||||||
let exit_status_as_if_unix: u8 = self.0.try_into().expect("Fuchsia process return code bigger than 8 bits, but std::os::unix::ExitStatusExt::into_raw() was called to try to convert the value into a traditional Unix-style wait status, which cannot represent values greater than 255.");
|
let exit_status_as_if_unix: u8 = self.0.try_into().expect("Fuchsia process return code bigger than 8 bits, but std::os::unix::ExitStatusExt::into_raw() was called to try to convert the value into a traditional Unix-style wait status, which cannot represent values greater than 255.");
|
||||||
let wait_status_as_if_unix = (exit_status_as_if_unix as c_int) << 8;
|
let wait_status_as_if_unix = (exit_status_as_if_unix as c_int) << 8;
|
||||||
|
|
|
@ -666,11 +666,11 @@ impl ExitStatus {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
|
pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
|
||||||
// This assumes that WIFEXITED(status) && WEXITSTATUS==0 corresponds to status==0. This is
|
// This assumes that WIFEXITED(status) && WEXITSTATUS==0 corresponds to status==0. This is
|
||||||
// true on all actual versions of Unix, is widely assumed, and is specified in SuS
|
// true on all actual versions of Unix, is widely assumed, and is specified in SuS
|
||||||
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/wait.html . If it is not
|
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/wait.html. If it is not
|
||||||
// true for a platform pretending to be Unix, the tests (our doctests, and also
|
// true for a platform pretending to be Unix, the tests (our doctests, and also
|
||||||
// procsss_unix/tests.rs) will spot it. `ExitStatusError::code` assumes this too.
|
// procsss_unix/tests.rs) will spot it. `ExitStatusError::code` assumes this too.
|
||||||
match NonZero_c_int::try_from(self.0) {
|
match NonZero_c_int::try_from(self.0) {
|
||||||
/* was nonzero */ Ok(failure) => Err(ExitStatusError(failure)),
|
/* was nonzero */ Ok(failure) => Err(ExitStatusError(failure)),
|
||||||
/* was zero, couldn't convert */ Err(_) => Ok(()),
|
/* was zero, couldn't convert */ Err(_) => Ok(()),
|
||||||
|
|
|
@ -19,17 +19,17 @@ fn exitstatus_display_tests() {
|
||||||
t(0x00000, "exit status: 0");
|
t(0x00000, "exit status: 0");
|
||||||
t(0x0ff00, "exit status: 255");
|
t(0x0ff00, "exit status: 255");
|
||||||
|
|
||||||
// On MacOS, 0x0137f is WIFCONTINUED, not WIFSTOPPED. Probably *BSD is similar.
|
// On MacOS, 0x0137f is WIFCONTINUED, not WIFSTOPPED. Probably *BSD is similar.
|
||||||
// https://github.com/rust-lang/rust/pull/82749#issuecomment-790525956
|
// https://github.com/rust-lang/rust/pull/82749#issuecomment-790525956
|
||||||
// The purpose of this test is to test our string formatting, not our understanding of the wait
|
// The purpose of this test is to test our string formatting, not our understanding of the wait
|
||||||
// status magic numbers. So restrict these to Linux.
|
// status magic numbers. So restrict these to Linux.
|
||||||
if cfg!(target_os = "linux") {
|
if cfg!(target_os = "linux") {
|
||||||
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
|
t(0x0137f, "stopped (not terminated) by signal: 19 (SIGSTOP)");
|
||||||
t(0x0ffff, "continued (WIFCONTINUED)");
|
t(0x0ffff, "continued (WIFCONTINUED)");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Testing "unrecognised wait status" is hard because the wait.h macros typically
|
// Testing "unrecognised wait status" is hard because the wait.h macros typically
|
||||||
// assume that the value came from wait and isn't mad. With the glibc I have here
|
// assume that the value came from wait and isn't mad. With the glibc I have here
|
||||||
// this works:
|
// this works:
|
||||||
if cfg!(all(target_os = "linux", target_env = "gnu")) {
|
if cfg!(all(target_os = "linux", target_env = "gnu")) {
|
||||||
t(0x000ff, "unrecognised wait status: 255 0xff");
|
t(0x000ff, "unrecognised wait status: 255 0xff");
|
||||||
|
|
|
@ -195,11 +195,11 @@ impl ExitStatus {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
|
pub fn exit_ok(&self) -> Result<(), ExitStatusError> {
|
||||||
// This assumes that WIFEXITED(status) && WEXITSTATUS==0 corresponds to status==0. This is
|
// This assumes that WIFEXITED(status) && WEXITSTATUS==0 corresponds to status==0. This is
|
||||||
// true on all actual versions of Unix, is widely assumed, and is specified in SuS
|
// true on all actual versions of Unix, is widely assumed, and is specified in SuS
|
||||||
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/wait.html . If it is not
|
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/wait.html. If it is not
|
||||||
// true for a platform pretending to be Unix, the tests (our doctests, and also
|
// true for a platform pretending to be Unix, the tests (our doctests, and also
|
||||||
// procsss_unix/tests.rs) will spot it. `ExitStatusError::code` assumes this too.
|
// procsss_unix/tests.rs) will spot it. `ExitStatusError::code` assumes this too.
|
||||||
match NonZero_c_int::try_from(self.0) {
|
match NonZero_c_int::try_from(self.0) {
|
||||||
Ok(failure) => Err(ExitStatusError(failure)),
|
Ok(failure) => Err(ExitStatusError(failure)),
|
||||||
Err(_) => Ok(()),
|
Err(_) => Ok(()),
|
||||||
|
|
|
@ -73,7 +73,7 @@ impl Thread {
|
||||||
n => {
|
n => {
|
||||||
assert_eq!(n, libc::EINVAL);
|
assert_eq!(n, libc::EINVAL);
|
||||||
// EINVAL means |stack_size| is either too small or not a
|
// EINVAL means |stack_size| is either too small or not a
|
||||||
// multiple of the system page size. Because it's definitely
|
// multiple of the system page size. Because it's definitely
|
||||||
// >= PTHREAD_STACK_MIN, it must be an alignment issue.
|
// >= PTHREAD_STACK_MIN, it must be an alignment issue.
|
||||||
// Round up to the nearest page and try again.
|
// Round up to the nearest page and try again.
|
||||||
let page_size = os::page_size();
|
let page_size = os::page_size();
|
||||||
|
@ -755,10 +755,10 @@ pub mod guard {
|
||||||
if cfg!(all(target_os = "linux", not(target_env = "musl"))) {
|
if cfg!(all(target_os = "linux", not(target_env = "musl"))) {
|
||||||
// Linux doesn't allocate the whole stack right away, and
|
// Linux doesn't allocate the whole stack right away, and
|
||||||
// the kernel has its own stack-guard mechanism to fault
|
// the kernel has its own stack-guard mechanism to fault
|
||||||
// when growing too close to an existing mapping. If we map
|
// when growing too close to an existing mapping. If we map
|
||||||
// our own guard, then the kernel starts enforcing a rather
|
// our own guard, then the kernel starts enforcing a rather
|
||||||
// large gap above that, rendering much of the possible
|
// large gap above that, rendering much of the possible
|
||||||
// stack space useless. See #43052.
|
// stack space useless. See #43052.
|
||||||
//
|
//
|
||||||
// Instead, we'll just note where we expect rlimit to start
|
// Instead, we'll just note where we expect rlimit to start
|
||||||
// faulting, so our handler can report "stack overflow", and
|
// faulting, so our handler can report "stack overflow", and
|
||||||
|
@ -774,14 +774,14 @@ pub mod guard {
|
||||||
None
|
None
|
||||||
} else if cfg!(target_os = "freebsd") {
|
} else if cfg!(target_os = "freebsd") {
|
||||||
// FreeBSD's stack autogrows, and optionally includes a guard page
|
// FreeBSD's stack autogrows, and optionally includes a guard page
|
||||||
// at the bottom. If we try to remap the bottom of the stack
|
// at the bottom. If we try to remap the bottom of the stack
|
||||||
// ourselves, FreeBSD's guard page moves upwards. So we'll just use
|
// ourselves, FreeBSD's guard page moves upwards. So we'll just use
|
||||||
// the builtin guard page.
|
// the builtin guard page.
|
||||||
let stackptr = get_stack_start_aligned()?;
|
let stackptr = get_stack_start_aligned()?;
|
||||||
let guardaddr = stackptr.addr();
|
let guardaddr = stackptr.addr();
|
||||||
// Technically the number of guard pages is tunable and controlled
|
// Technically the number of guard pages is tunable and controlled
|
||||||
// by the security.bsd.stack_guard_page sysctl, but there are
|
// by the security.bsd.stack_guard_page sysctl, but there are
|
||||||
// few reasons to change it from the default. The default value has
|
// few reasons to change it from the default. The default value has
|
||||||
// been 1 ever since FreeBSD 11.1 and 10.4.
|
// been 1 ever since FreeBSD 11.1 and 10.4.
|
||||||
const GUARD_PAGES: usize = 1;
|
const GUARD_PAGES: usize = 1;
|
||||||
let guard = guardaddr..guardaddr + GUARD_PAGES * page_size;
|
let guard = guardaddr..guardaddr + GUARD_PAGES * page_size;
|
||||||
|
@ -877,9 +877,9 @@ pub mod guard {
|
||||||
} else if cfg!(all(target_os = "linux", any(target_env = "gnu", target_env = "uclibc")))
|
} else if cfg!(all(target_os = "linux", any(target_env = "gnu", target_env = "uclibc")))
|
||||||
{
|
{
|
||||||
// glibc used to include the guard area within the stack, as noted in the BUGS
|
// glibc used to include the guard area within the stack, as noted in the BUGS
|
||||||
// section of `man pthread_attr_getguardsize`. This has been corrected starting
|
// section of `man pthread_attr_getguardsize`. This has been corrected starting
|
||||||
// with glibc 2.27, and in some distro backports, so the guard is now placed at the
|
// with glibc 2.27, and in some distro backports, so the guard is now placed at the
|
||||||
// end (below) the stack. There's no easy way for us to know which we have at
|
// end (below) the stack. There's no easy way for us to know which we have at
|
||||||
// runtime, so we'll just match any fault in the range right above or below the
|
// runtime, so we'll just match any fault in the range right above or below the
|
||||||
// stack base to call that fault a stack overflow.
|
// stack base to call that fault a stack overflow.
|
||||||
Some(stackaddr - guardsize..stackaddr + guardsize)
|
Some(stackaddr - guardsize..stackaddr + guardsize)
|
||||||
|
|
|
@ -157,7 +157,7 @@ impl<'a> Iterator for SplitPaths<'a> {
|
||||||
// Double quotes are used as a way of introducing literal semicolons
|
// Double quotes are used as a way of introducing literal semicolons
|
||||||
// (since c:\some;dir is a valid Windows path). Double quotes are not
|
// (since c:\some;dir is a valid Windows path). Double quotes are not
|
||||||
// themselves permitted in path names, so there is no way to escape a
|
// themselves permitted in path names, so there is no way to escape a
|
||||||
// double quote. Quoted regions can appear in arbitrary locations, so
|
// double quote. Quoted regions can appear in arbitrary locations, so
|
||||||
//
|
//
|
||||||
// c:\foo;c:\som"e;di"r;c:\bar
|
// c:\foo;c:\som"e;di"r;c:\bar
|
||||||
//
|
//
|
||||||
|
|
|
@ -26,7 +26,7 @@ impl Thread {
|
||||||
|
|
||||||
// FIXME On UNIX, we guard against stack sizes that are too small but
|
// FIXME On UNIX, we guard against stack sizes that are too small but
|
||||||
// that's because pthreads enforces that stacks are at least
|
// that's because pthreads enforces that stacks are at least
|
||||||
// PTHREAD_STACK_MIN bytes big. Windows has no such lower limit, it's
|
// PTHREAD_STACK_MIN bytes big. Windows has no such lower limit, it's
|
||||||
// just that below a certain threshold you can't do anything useful.
|
// just that below a certain threshold you can't do anything useful.
|
||||||
// That threshold is application and architecture-specific, however.
|
// That threshold is application and architecture-specific, however.
|
||||||
let ret = c::CreateThread(
|
let ret = c::CreateThread(
|
||||||
|
|
|
@ -116,7 +116,7 @@ pub fn test_main(args: &[String], tests: Vec<TestDescAndFn>, options: Option<Opt
|
||||||
} else {
|
} else {
|
||||||
if !opts.nocapture {
|
if !opts.nocapture {
|
||||||
// If we encounter a non-unwinding panic, flush any captured output from the current test,
|
// If we encounter a non-unwinding panic, flush any captured output from the current test,
|
||||||
// and stop capturing output to ensure that the non-unwinding panic message is visible.
|
// and stop capturing output to ensure that the non-unwinding panic message is visible.
|
||||||
// We also acquire the locks for both output streams to prevent output from other threads
|
// We also acquire the locks for both output streams to prevent output from other threads
|
||||||
// from interleaving with the panic message or appearing after it.
|
// from interleaving with the panic message or appearing after it.
|
||||||
let builtin_panic_hook = panic::take_hook();
|
let builtin_panic_hook = panic::take_hook();
|
||||||
|
|
|
@ -30,7 +30,7 @@ pub(crate) fn get_dbpath_for_term(term: &str) -> Option<PathBuf> {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Found nothing in TERMINFO_DIRS, use the default paths:
|
// Found nothing in TERMINFO_DIRS, use the default paths:
|
||||||
// According to /etc/terminfo/README, after looking at
|
// According to /etc/terminfo/README, after looking at
|
||||||
// ~/.terminfo, ncurses will search /etc/terminfo, then
|
// ~/.terminfo, ncurses will search /etc/terminfo, then
|
||||||
// /lib/terminfo, and eventually /usr/share/terminfo.
|
// /lib/terminfo, and eventually /usr/share/terminfo.
|
||||||
// On Haiku the database can be found at /boot/system/data/terminfo
|
// On Haiku the database can be found at /boot/system/data/terminfo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue