dtrace: doesn't catch any write sys call
问题 I'm new to dtrace and trying to write some a basic dtrace scripting. I found a example to catch read(2) and write(2) syscall on seperate terminal as following, syscall::read:entry, syscall::write:entry /pid==4217/ { } The specified pid number is from the other terminal's pid id. When I saw the example, it supposed to show some read and write syscall if I run this script with dtrace. But I only observed read syscall but not write syscall. So if I understand correctly, on the terminal I observe