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_PID(4) FreeBSD Kernel Interfaces Manual DTRACE_PID(4)

dtrace_pida DTrace provider for dynamic userspace tracing based on function boundary instrumentation

pidPID:module:function:entry

pidPID:module:function:[offset]

pidPID:module:function:return

The pid provider implements userspace dynamic tracing by instrumenting the entry and return of functions in userspace programs. Refer to dtrace_fbt(4) for more details about function boundary instrumentation.

The pid provider provides the following probes:

pidPID:module:function:entry
instruments the entry of the function.
pidPID:module:function:[offset]
instruments the instruction within the function located at offset bytes (expressed as a hexadecimal integer).
pidPID:module:function:return
instruments the return from the function.

The arguments of the entry probe (pidPID:module:function:entry) are the arguments of the traced function call.

uint64_t arg0 Function's first argument
uint64_t arg1 Function's second argument
uint64_t arg2 Function's third argument
... ...

The offset probes (pidPID:module:function:[offset]) do not define any arguments. Use uregs[] to inspect the registers.

The arguments of the return probe (pidPID:module:function:return) are the program counter and the function's return value.

uint64_t arg0 Program counter
uint64_t arg1 Function's return value

Note that all probe arguments within the pid provider are of type uint64_t.

dtrace(1), dtrace_fbt(4), dtrace_kinst(4), elf(5), d(7), tracing(7)

Brendan Gregg and Jim Mauro, DTrace: Dynamic Tracing in Oracle Solaris, Mac OS X and FreeBSD, Prentice Hall, https://www.brendangregg.com/dtracebook/, 2011.

The illumos Dynamic Tracing Guide, https://illumos.org/books/dtrace/chp-pid.html, 2008, Chapter pid Provider.

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

November 6, 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.