Skip to content

Commit dee7e9d

Browse files
committed
Auto merge of #3762 - rust-lang:rustup-2024-07-25, r=saethlin
Automatic Rustup
2 parents b10b02f + 2cbdc7c commit dee7e9d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
42103d69b73fb4e9d03d5cf66ec12985bb526f6e
1+
e7d66eac5e8e8f60370c98d186aee9fa0ebd7845

tests/fail-dep/concurrency/libc_pthread_mutex_deadlock.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LL | assert_eq!(libc::pthread_mutex_lock(lock_copy.0.get() as *mut _
1010
error: deadlock: the evaluated program deadlocked
1111
--> RUSTLIB/std/src/sys/pal/PLATFORM/thread.rs:LL:CC
1212
|
13-
LL | let ret = libc::pthread_join(self.id, ptr::null_mut());
13+
LL | let ret = unsafe { libc::pthread_join(id, ptr::null_mut()) };
1414
| ^ the evaluated program deadlocked
1515
|
1616
= note: BACKTRACE:

tests/fail-dep/concurrency/libc_pthread_rwlock_write_read_deadlock.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LL | assert_eq!(libc::pthread_rwlock_wrlock(lock_copy.0.get() as *mu
1010
error: deadlock: the evaluated program deadlocked
1111
--> RUSTLIB/std/src/sys/pal/PLATFORM/thread.rs:LL:CC
1212
|
13-
LL | let ret = libc::pthread_join(self.id, ptr::null_mut());
13+
LL | let ret = unsafe { libc::pthread_join(id, ptr::null_mut()) };
1414
| ^ the evaluated program deadlocked
1515
|
1616
= note: BACKTRACE:

tests/fail-dep/concurrency/libc_pthread_rwlock_write_write_deadlock.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LL | assert_eq!(libc::pthread_rwlock_wrlock(lock_copy.0.get() as *mu
1010
error: deadlock: the evaluated program deadlocked
1111
--> RUSTLIB/std/src/sys/pal/PLATFORM/thread.rs:LL:CC
1212
|
13-
LL | let ret = libc::pthread_join(self.id, ptr::null_mut());
13+
LL | let ret = unsafe { libc::pthread_join(id, ptr::null_mut()) };
1414
| ^ the evaluated program deadlocked
1515
|
1616
= note: BACKTRACE:

0 commit comments

Comments
 (0)