PERFORCE change 134070 for review

John Birrell jb at FreeBSD.org
Fri Jan 25 00:56:20 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=134070

Change 134070 by jb at jb_freebsd1 on 2008/01/25 08:55:19

	Solaris must send signals from pid 0. Make this work on FreeBSD.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.sigwait.d#3 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.sigwait.d#3 (text+ko) ====

@@ -28,13 +28,13 @@
 
 #pragma D option destructive
 
-proc:::signal-send
-/pid == 0 && args[1]->pr_pid == $1 && args[2] == SIGUSR1/
+proc:::signal_send
+/args[1]->p_pid == $1 && args[2] == SIGUSR1/
 {
 	sent = 1;
 }
 
-proc:::signal-clear
+proc:::signal_clear
 /pid == $1 && args[0] == SIGUSR1 && sent/
 {
 	exit(0);


More information about the p4-projects mailing list