Reputation: 900
Configuration:
While profiling, I've noticed a very high utilization in the "(program)" section of the profile. "Manually" profiling (with node --prof and mac-tick-processor) shows a similarly high percentage spent in ___psynch_rw_unlock
in the C++ section.
The primary usage of the program during the profiling was:
Is this normal behavior, or is this a sign of a deeper problem?
Upvotes: 5
Views: 2157
Reputation: 32306
As of now, Chrome classifies both native code and idle time as (program)
. Now that http://trac.webkit.org/changeset/138004 has landed, let's see if it makes it into the next Chrome version...
Upvotes: 5