Skip to content

Commit

Permalink
Rollup merge of #131307 - YohDeadfall:prctl-set-name-dbg-assert, r=wo…
Browse files Browse the repository at this point in the history
…rkingjubilee

Android: Debug assertion after setting thread name

While `prctl` cannot fail if it points to a valid buffer, it's still better to assert the result as it's done for other places.
  • Loading branch information
matthiaskrgr authored Oct 6, 2024
2 parents 1e2b77d + 2223328 commit 9e8c030
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/std/src/sys/pal/unix/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,15 @@ impl Thread {
pub fn set_name(name: &CStr) {
const PR_SET_NAME: libc::c_int = 15;
unsafe {
libc::prctl(
let res = libc::prctl(
PR_SET_NAME,
name.as_ptr(),
0 as libc::c_ulong,
0 as libc::c_ulong,
0 as libc::c_ulong,
);
// We have no good way of propagating errors here, but in debug-builds let's check that this actually worked.
debug_assert_eq!(res, 0);
}
}

Expand Down

0 comments on commit 9e8c030

Please sign in to comment.