We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a332dc commit c019029Copy full SHA for c019029
1 file changed
agent/src/platform/platform_synchronizer/proc_scan_hook.rs
@@ -18,7 +18,10 @@ use super::ProcessData;
18
19
pub fn proc_scan_hook(_proc_root: &str, _process_datas: &mut Vec<ProcessData>) {
20
// Enterprise: clean dead AI Agent PIDs and mark alive ones with biz_type
21
- #[cfg(feature = "enterprise")]
+ #[cfg(all(
22
+ feature = "enterprise",
23
+ any(target_os = "linux", target_os = "android")
24
+ ))]
25
{
26
use std::collections::HashSet;
27
0 commit comments