Date: Sat, 26 Jan 2008 22:28:34 GMT From: John Birrell <jb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 134155 for review Message-ID: <200801262228.m0QMSYlU069375@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=134155 Change 134155 by jb@jb_freebsd1 on 2008/01/26 22:28:01 Add the fasttrap provider on amd64 only at the moment. Affected files ... .. //depot/projects/dtrace/src/sys/modules/dtrace/Makefile#24 edit .. //depot/projects/dtrace/src/sys/modules/dtrace/dtraceall/dtraceall.c#4 edit Differences ... ==== //depot/projects/dtrace/src/sys/modules/dtrace/Makefile#24 (text+ko) ==== @@ -12,7 +12,8 @@ systrace .if ${MACHINE_ARCH} == "amd64" -SUBDIR+= fbt +SUBDIR+= fasttrap \ + fbt .elif ${MACHINE_ARCH} == "i386" SUBDIR+= fbt .endif ==== //depot/projects/dtrace/src/sys/modules/dtrace/dtraceall/dtraceall.c#4 (text+ko) ==== @@ -64,6 +64,9 @@ MODULE_DEPEND(dtraceall, cyclic, 1, 1, 1); MODULE_DEPEND(dtraceall, opensolaris, 1, 1, 1); MODULE_DEPEND(dtraceall, dtrace, 1, 1, 1); +#if defined(__amd64__) +MODULE_DEPEND(dtraceall, fasttrap, 1, 1, 1); +#endif #if defined(__amd64__) || defined(__i386__) MODULE_DEPEND(dtraceall, fbt, 1, 1, 1); #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801262228.m0QMSYlU069375>