From owner-cvs-sys Mon Dec 1 10:44:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA00977 for cvs-sys-outgoing; Mon, 1 Dec 1997 10:44:37 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA00640; Mon, 1 Dec 1997 10:41:46 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA14631; Mon, 1 Dec 1997 10:41:09 -0800 (PST) Date: Mon, 1 Dec 1997 10:41:09 -0800 (PST) Message-Id: <199712011841.KAA14631@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_aio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dyson 1997/12/01 10:41:09 PST Modified files: sys/kern vfs_aio.c Log: Fix a problem when creating a new kernel thread. In some cases, aio_read or aio_write can return the pid of the new thread. This is due to the way that return values from system calls being passed by side-effect in the proc structure now. This commit fixes the problem with aio_read and aio_write. Revision Changes Path 1.18 +2 -1 src/sys/kern/vfs_aio.c