vm_glue.c (235750ee5130aa71cf4151457435e806dd58f2ec) | vm_glue.c (01518f5eede79cf65319d455eb50e78c9efa2b51) |
---|---|
1/*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 3 * 4 * Copyright (c) 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * The Mach Operating System project at Carnegie-Mellon University. --- 822 unchanged lines hidden (view full) --- 831 * the process was still executing. 832 */ 833void 834vm_waitproc(struct proc *p) 835{ 836 837 vmspace_exitfree(p); /* and clean-out the vmspace */ 838} | 1/*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 3 * 4 * Copyright (c) 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * The Mach Operating System project at Carnegie-Mellon University. --- 822 unchanged lines hidden (view full) --- 831 * the process was still executing. 832 */ 833void 834vm_waitproc(struct proc *p) 835{ 836 837 vmspace_exitfree(p); /* and clean-out the vmspace */ 838} |
839 840/* 841 * This used to kick the thread which faults in threads. 842 */ 843void 844kick_proc0(void) 845{ 846} | |