Print this page
4474 DTrace Userland CTF Support
4475 DTrace userland Keyword
4476 DTrace tests should be better citizens
4479 pid provider types
4480 dof emulation missing checks
Reviewed by: Bryan Cantrill <bryan@joyent.com>

*** 62,72 **** provider $oogle { probe knows(); }; EOF ! cc -c $oogle.c if [ $? -ne 0 ]; then print -u2 "failed to compile $oogle.c" exit 1 fi --- 62,72 ---- provider $oogle { probe knows(); }; EOF ! gcc -m32 -c $oogle.c if [ $? -ne 0 ]; then print -u2 "failed to compile $oogle.c" exit 1 fi
*** 85,95 **** echo "}" >> test.c echo 'END{printa("%-10s %@d\\n", @)}' >> test.d ! cc -o test test.c $objs if [ $? -ne 0 ]; then print -u2 "failed to compile test.c" exit 1 fi --- 85,95 ---- echo "}" >> test.c echo 'END{printa("%-10s %@d\\n", @)}' >> test.d ! gcc -m32 -o test test.c $objs if [ $? -ne 0 ]; then print -u2 "failed to compile test.c" exit 1 fi