Re: pipe test case in perl - problem found

2002-05-02 Thread Marcus Brinkmann
On Thu, May 02, 2002 at 06:50:22PM -0400, Marcus Brinkmann wrote: > For example, couldn't we move the send > right back to the filesystem server in close? Funny idea, Marcus. This raises the question if it is safe to send a message to a port and move your last send right for it in the message a

pipe test case in perl - problem found

2002-05-02 Thread Marcus Brinkmann
Hi, the perl test which tests if writing to a broken pipe fails properly doesn't fail, as reported before. Under rpctrace, it did. Here the main code: signal (SIGPIPE, foo); pipe (fds); close (fds[0]); /* sleep (1); */ err = write (fds[1], "hallo", 6); I think the reason might be th