Skip to content

Commit fe4d327

Browse files
committedFeb 12, 2024
comment tweaks
1 parent c41d5b1 commit fe4d327

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed
 

‎src/tools/miri/src/concurrency/sync.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct Mutex {
7070
lock_count: usize,
7171
/// The queue of threads waiting for this mutex.
7272
queue: VecDeque<ThreadId>,
73-
/// Data race handle, this tracks the happens-before
73+
/// Data race handle. This tracks the happens-before
7474
/// relationship between each mutex access. It is
7575
/// released to during unlock and acquired from during
7676
/// locking, and therefore stores the clock of the last
@@ -92,7 +92,7 @@ struct RwLock {
9292
writer_queue: VecDeque<ThreadId>,
9393
/// The queue of reader threads waiting for this lock.
9494
reader_queue: VecDeque<ThreadId>,
95-
/// Data race handle for writers, tracks the happens-before
95+
/// Data race handle for writers. Tracks the happens-before
9696
/// ordering between each write access to a rwlock and is updated
9797
/// after a sequence of concurrent readers to track the happens-
9898
/// before ordering between the set of previous readers and
@@ -101,7 +101,7 @@ struct RwLock {
101101
/// lock or the joined clock of the set of last threads to release
102102
/// shared reader locks.
103103
data_race: VClock,
104-
/// Data race handle for readers, this is temporary storage
104+
/// Data race handle for readers. This is temporary storage
105105
/// for the combined happens-before ordering for between all
106106
/// concurrent readers and the next writer, and the value
107107
/// is stored to the main data_race variable once all

‎src/tools/miri/tests/fail/enum-set-discriminant-niche-variant-wrong.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
use std::intrinsics::mir::*;
55
use std::num::NonZeroI32;
66

7-
// We define our own option type so that we can control the varian indices.
7+
// We define our own option type so that we can control the variant indices.
88
#[allow(unused)]
99
enum Option<T> {
10-
None,
11-
Some(T),
10+
None, // variant 0
11+
Some(T), // variant 1
1212
}
1313
use Option::*;
1414

‎src/tools/miri/tests/pass-dep/concurrency/libc_pthread_cond.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn test_timed_wait_timeout(clock_id: i32) {
2222
let mut now_mu: MaybeUninit<libc::timespec> = MaybeUninit::uninit();
2323
assert_eq!(libc::clock_gettime(clock_id, now_mu.as_mut_ptr()), 0);
2424
let now = now_mu.assume_init();
25-
// Waiting for a second... mostly because waiting less requires mich more tricky arithmetic.
25+
// Waiting for a second... mostly because waiting less requires much more tricky arithmetic.
2626
// FIXME: wait less.
2727
let timeout = libc::timespec { tv_sec: now.tv_sec + 1, tv_nsec: now.tv_nsec };
2828

‎src/tools/miri/tests/pass-dep/concurrency/libc_pthread_cond_isolated.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn test_timed_wait_timeout(clock_id: i32) {
2121
let mut now_mu: MaybeUninit<libc::timespec> = MaybeUninit::uninit();
2222
assert_eq!(libc::clock_gettime(clock_id, now_mu.as_mut_ptr()), 0);
2323
let now = now_mu.assume_init();
24-
// Waiting for a second... mostly because waiting less requires mich more tricky arithmetic.
24+
// Waiting for a second... mostly because waiting less requires much more tricky arithmetic.
2525
// FIXME: wait less.
2626
let timeout = libc::timespec { tv_sec: now.tv_sec + 1, tv_nsec: now.tv_nsec };
2727

‎src/tools/miri/tests/pass-dep/shims/pthread-sync.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ fn test_mutex_libc_static_initializer_recursive() {
9898
}
9999
}
100100

101-
// Testing the behavior of std::sync::RwLock does not fully exercise the pthread rwlock shims, we
102-
// need to go a layer deeper and test the behavior of the libc functions, because
103-
// std::sys::unix::rwlock::RWLock itself keeps track of write_locked and num_readers.
101+
// std::sync::RwLock does not even used pthread_rwlock any more.
102+
// Do some smoke testing of the API surface.
104103
fn test_rwlock_libc_static_initializer() {
105104
let rw = std::cell::UnsafeCell::new(libc::PTHREAD_RWLOCK_INITIALIZER);
106105
unsafe {

0 commit comments

Comments
 (0)