From owner-cvs-all Mon Jul 29 11:33:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ECE737B401; Mon, 29 Jul 2002 11:33:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02C3243E31; Mon, 29 Jul 2002 11:33:33 -0700 (PDT) (envelope-from julian@FreeBSD.org) Received: from freefall.freebsd.org (julian@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6TIXWJU029872; Mon, 29 Jul 2002 11:33:32 -0700 (PDT) (envelope-from julian@freefall.freebsd.org) Received: (from julian@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6TIXW80029871; Mon, 29 Jul 2002 11:33:32 -0700 (PDT) Message-Id: <200207291833.g6TIXW80029871@freefall.freebsd.org> From: Julian Elischer Date: Mon, 29 Jul 2002 11:33:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/procfs procfs_ctl.c src/sys/kern kern_condvar.c kern_synch.c src/sys/sys proc.h src/sys/vm vm_glue.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/07/29 11:33:32 PDT Modified files: sys/fs/procfs procfs_ctl.c sys/kern kern_condvar.c kern_synch.c sys/sys proc.h sys/vm vm_glue.c Log: Create a new thread state to describe threads that would be ready to run except for the fact tha they are presently swapped out. Also add a process flag to indicate that the process has started the struggle to swap back in. This will be needed for the case where multiple threads start the swapin action top a collision. Also add code to stop a process fropm being swapped out if one of the threads in this process is actually off running on another CPU.. that might hurt... Submitted by: Seigo Tanimura Revision Changes Path 1.42 +2 -0 src/sys/fs/procfs/procfs_ctl.c 1.26 +1 -0 src/sys/kern/kern_condvar.c 1.190 +4 -3 src/sys/kern/kern_synch.c 1.232 +7 -2 src/sys/sys/proc.h 1.148 +66 -16 src/sys/vm/vm_glue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message