Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
realFlowControl committed Nov 8, 2024
1 parent 05d4949 commit 650c13b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 36 deletions.
56 changes: 21 additions & 35 deletions profiling/src/profiling/thread_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use std::mem::MaybeUninit;
use std::thread::JoinHandle;
use std::time::{Duration, Instant};

use crate::sapi::Sapi;
use crate::SAPI;

/// Spawns a thread and masks off the signals that the Zend Engine uses.
Expand Down Expand Up @@ -77,23 +78,26 @@ pub fn get_current_thread_name() -> String {

#[cfg(php_zts)]
{
let mut name = [0u8; 32];

let result = unsafe {
libc::pthread_getname_np(
libc::pthread_self(),
name.as_mut_ptr() as *mut c_char,
name.len(),
)
};

if result == 0 {
// If successful, convert the result to a Rust String
let cstr = unsafe { std::ffi::CStr::from_ptr(name.as_ptr() as *const c_char) };
let str_slice: &str = cstr.to_str().unwrap();
if !str_slice.is_empty() {
thread_name.push_str(": ");
thread_name.push_str(str_slice);
// So far, only FrankenPHP sets meaningful thread names
if *SAPI == Sapi::FrankenPHP {
let mut name = [0u8; 32];

let result = unsafe {
libc::pthread_getname_np(
libc::pthread_self(),
name.as_mut_ptr() as *mut c_char,
name.len(),
)
};

if result == 0 {
// If successful, convert the result to a Rust String
let cstr = unsafe { std::ffi::CStr::from_ptr(name.as_ptr() as *const c_char) };
let str_slice: &str = cstr.to_str().unwrap();
if !str_slice.is_empty() {
thread_name.push_str(": ");
thread_name.push_str(str_slice);
}
}
}
}
Expand All @@ -117,23 +121,5 @@ mod tests {
);
}
assert_eq!(get_current_thread_name(), "unknown");

unsafe {
libc::pthread_setname_np(
#[cfg(target_os = "linux")]
libc::pthread_self(),
b"foo\0".as_ptr() as *const c_char,
);
}
assert_eq!(get_current_thread_name(), "unknown: foo");

unsafe {
libc::pthread_setname_np(
#[cfg(target_os = "linux")]
libc::pthread_self(),
b"bar\0".as_ptr() as *const c_char,
);
}
assert_eq!(get_current_thread_name(), "unknown: bar");
}
}
4 changes: 3 additions & 1 deletion profiling/tests/correctness/exceptions_zts.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
},
{
"key": "thread name",
"values_regex": "^cli.*$"
"values": [
"cli"
]
}
]
}
Expand Down

0 comments on commit 650c13b

Please sign in to comment.