From owner-freebsd-hackers Sat Feb 28 05:35:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA08221 for freebsd-hackers-outgoing; Sat, 28 Feb 1998 05:35:32 -0800 (PST) (envelope-from owner-freebsd-hackers@FreeBSD.ORG) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA08143 for ; Sat, 28 Feb 1998 05:34:51 -0800 (PST) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id NAA17458 for hackers@freebsd.org; Sat, 28 Feb 1998 13:02:02 +0100 From: Luigi Rizzo Message-Id: <199802281202.NAA17458@labinfo.iet.unipi.it> Subject: one-line bugfix to sys/i386/isa/snd/dmabuf.c To: hackers@FreeBSD.ORG Date: Sat, 28 Feb 1998 13:02:01 +0100 (MET) X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was recently pointed out a bug in dmabuf.c -- there is one line which reads d->flags |= ~SND_F_ABORTING; which obviously should be changed to d->flags &= ~SND_F_ABORTING; this bug must have been there for ages, although it has been probably undetected since it only affects applications which use the capture channel and only when a signal is caught while the application is blocked on a tsleep. patches for the source tree for this and other minor things will be submitted in a few days. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message