summaryrefslogtreecommitdiff
path: root/sys/kern/kern_dtrace.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove code that isn't required. It actually breaks the case where KDTRACE_HOOKSJohn Birrell2008-06-161-12/+0
| | | | | | | is defined and KDB isn't. This is the case that it was intended for. Notes: svn path=/head/; revision=179811
* Add support for the DTrace struct proc and struct thread extendedJohn Birrell2008-05-181-0/+120
data via ctor and dtor event handlers. The size of the extra data is allocated opaquely and this file contains a function which the dtrace module can call to check that the kernel supports at least the amount of data that it needs. This file is optionally compiled into nthe kernel if the KDTRACE_HOOKS kernel option is defined. Notes: svn path=/head/; revision=179090