a5aedd68b4
adds probes for mutexes, reader/writer and shared/exclusive locks to gather contention statistics and other locking information for dtrace scripts, the lockstat(1M) command and other potential consumers. Reviewed by: attilio jhb jb Approved by: gnn (mentor)
24 lines
321 B
Makefile
24 lines
321 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtmalloc \
|
|
dtnfsclient \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
lockstat \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
SUBDIR+= fbt
|
|
.elif ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+= fbt
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|