remove redundant Send + Sync impls on Process

This commit is contained in:
2025-12-03 16:06:15 +00:00
parent 8d4c796cce
commit 98689b682a
-3
View File
@@ -39,9 +39,6 @@ pub struct Process {
pub handle: Handle,
}
unsafe impl Send for Process {}
unsafe impl Sync for Process {}
impl Process {
/// initialize a `Process` from a pid or a process name
pub fn from<T: Into<Identifier>>(identifier: T) -> Result<Self, Error> {