Index: tests/sys/kern/pdeathsig.c =================================================================== --- tests/sys/kern/pdeathsig.c +++ tests/sys/kern/pdeathsig.c @@ -229,7 +229,6 @@ int rc; int pipe_ca[2]; int pipe_db[2]; - int pipe_cd[2]; char buffer; int status; @@ -237,8 +236,6 @@ ATF_REQUIRE(rc == 0); rc = pipe(pipe_db); ATF_REQUIRE(rc == 0); - rc = pipe(pipe_cd); - ATF_REQUIRE(rc == 0); rc = fork(); ATF_REQUIRE(rc != -1); @@ -266,10 +263,6 @@ rc = procctl(P_PID, 0, PROC_PDEATHSIG_CTL, &signum); assert(rc == 0); - /* tell D we are ready for it to attach */ - rc = write(pipe_cd[1], ".", 1); - assert(rc == 1); - /* wait for B to die and signal us... */ signum = 0xdeadbeef; rc = sigwait(&sigset, &signum);