I have a website with a custom script running on a VPS hosting. All scripts exit via index.php using mod_rewrite and .htaccess for friendly URLs
Something in my script is generating high CPU usage, as shown: 
When I go and strace this process, I get this that I do not understand:
setitimer(ITIMER_PROF, {it_interval={0, 0}, it_value={90, 0}}, NULL) = 0 rt_sigaction(SIGPROF, {0x7a6b8f, [PROF], SA_RESTORER|SA_RESTART, 0x2af8ae8742f0}, {0x7a6b8f, [PROF], SA_RESTORER|SA_RESTART, 0x2af8ae8742f0}, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [PROF], NULL, 8) = 0
This repeats continuously in an infinite loop.
I need to know how to track the exact PHP script causing this problem. Any suggestions?
Vinicio barrantes
source share