summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_dtrace.c
Commit message (Collapse)AuthorAgeFilesLines
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.ed2011-11-071-1/+1
| | | | This means that their use is restricted to a single C file.
* Add some FEATURE macros for various features (AUDIT/CAM/IPC/KTR/MAC/NFS/NTP/netchild2011-02-251-0/+4
| | | | | | | | | | | | | PMC/SYSV/...). No FreeBSD version bump, the userland application to query the features will be committed last and can serve as an indication of the availablility if needed. Sponsored by: Google Summer of Code 2010 Submitted by: kibab Reviewed by: arch@ (parts by rwatson, trasz, jhb) X-MFC after: to be determined in last commit with code from this project
* Bump KDTRACE_THREAD_ZERO and use M_ZERO as a malloc flag instead ofrpaulo2010-08-221-6/+3
| | | | | | calling bzero. Sponsored by: The FreeBSD Foundation
* Fix style issues.rpaulo2010-08-221-6/+14
| | | | Sponsored by: The FreeBSD Foundation
* Remove code that isn't required. It actually breaks the case where KDTRACE_HOOKSjb2008-06-161-12/+0
| | | | is defined and KDB isn't. This is the case that it was intended for.
* Add support for the DTrace struct proc and struct thread extendedjb2008-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.
OpenPOWER on IntegriCloud