OL 8 & dtrace
Hi,
I've a Linux 8.10 server with Oracle Forms and I want to start a strace of a process when it open(starts) a specific fmx file. The process name is than frmweb. I want to use dtrace (stap doesn't work very well) and I'm struggling creating a propper dtrace script.
In pseudo-dtrace it should look like this:
syscall::open::entry
/filename == "modulex.fmx"
{
system("strace -p ". $pid
}
Who can help me?
regards,
Ivan