From owner-freebsd-hackers Thu Jun 8 10:21:49 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA19583 for hackers-outgoing; Thu, 8 Jun 1995 10:21:49 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id KAA19577 for ; Thu, 8 Jun 1995 10:21:46 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id DAA00374 for hackers@FreeBSD.org; Fri, 9 Jun 1995 03:16:54 +1000 Date: Fri, 9 Jun 1995 03:16:54 +1000 From: Bruce Evans Message-Id: <199506081716.DAA00374@godzilla.zeta.org.au> To: hackers@FreeBSD.org Subject: Re: pthreads (was Re: DCE in BSD4.4-Lite) Sender: hackers-owner@FreeBSD.org Precedence: bulk >Chris Provenzano's beta pthread package based on POSIX1003.4a Draft >8 with a few minor patches compiles and almost runs through its >tests on FreeBSD 2.05B. The test that fails is the >floating point preemption test, which dies with a: >> pid 4510 (test_preemption_) exited with masked floating point exceptions 0x41 This message is from exit() in the kernel and may be unimportant. A message like it is normal if a process fiddles with the FPU exception mask and then gets a masked exception and doesn't clear the exception before exiting. Perhaps the message should be under #ifdef DEBUG for 2.0.5R. Bruce