@@ -70,7 +70,7 @@ struct Mutex {
70
70
lock_count : usize ,
71
71
/// The queue of threads waiting for this mutex.
72
72
queue : VecDeque < ThreadId > ,
73
- /// Data race handle, this tracks the happens-before
73
+ /// Data race handle. This tracks the happens-before
74
74
/// relationship between each mutex access. It is
75
75
/// released to during unlock and acquired from during
76
76
/// locking, and therefore stores the clock of the last
@@ -92,7 +92,7 @@ struct RwLock {
92
92
writer_queue : VecDeque < ThreadId > ,
93
93
/// The queue of reader threads waiting for this lock.
94
94
reader_queue : VecDeque < ThreadId > ,
95
- /// Data race handle for writers, tracks the happens-before
95
+ /// Data race handle for writers. Tracks the happens-before
96
96
/// ordering between each write access to a rwlock and is updated
97
97
/// after a sequence of concurrent readers to track the happens-
98
98
/// before ordering between the set of previous readers and
@@ -101,7 +101,7 @@ struct RwLock {
101
101
/// lock or the joined clock of the set of last threads to release
102
102
/// shared reader locks.
103
103
data_race : VClock ,
104
- /// Data race handle for readers, this is temporary storage
104
+ /// Data race handle for readers. This is temporary storage
105
105
/// for the combined happens-before ordering for between all
106
106
/// concurrent readers and the next writer, and the value
107
107
/// is stored to the main data_race variable once all
0 commit comments