GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
* Sign Up! *

Support
Customer Portal
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DTRACE_CALLOUT_EXECUTE(4) FreeBSD Kernel Interfaces Manual DTRACE_CALLOUT_EXECUTE(4)

dtrace_callout_executea DTrace provider for the callout API

callout_execute:kernel::callout_start

callout_execute:kernel::callout_end

The callout_execute provider allows for tracing the callout(9) mechanism.

The callout_execute:kernel::callout_start probe fires just before a callout.

The callout_execute:kernel::callout_end probe fires right after a callout.

The only argument to the callout_execute probes, args[0], is a callout handler struct callout * of the invoked callout.

The following d(7) script generates a distribution graph of callout(9) execution times:

callout_execute:::callout_start
{
    self->cstart = timestamp;
}

callout_execute:::callout_end
{
    @length = quantize(timestamp - self->cstart);
}

The callout_execute provider was written by Robert N. M. Watson <rwatson@FreeBSD.org>.

This manual page was written by Mateusz Piotrowski <0mp@FreeBSD.org>.

November 4, 2025 FreeBSD 15.1-RELEASE

Search for    or go to Top of page |  Section 4 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.