Searched defs:fasttrap_total (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/dtrace/
H A Dfasttrap.c145 * fasttrap.conf file. Each time a probe is created, fasttrap_total is
147 * probe; fasttrap_total is capped at fasttrap_max.
151 static uint32_t fasttrap_total; variable
342 if (fasttrap_total > fasttrap_max / 2)
1130 ASSERT(fasttrap_total >= probe->ftp_ntps);
1132 atomic_add_32(&fasttrap_total, -probe->ftp_ntps);
1608 atomic_inc_32(&fasttrap_total);
1610 if (fasttrap_total > fasttrap_max) {
1611 atomic_dec_32(&fasttrap_total);
1641 atomic_add_32(&fasttrap_total, pdat
[all...]

Completed in 63 milliseconds