vm_machdep.c (628888f0e050ea6ef69165035f2a95b335ef3343) | vm_machdep.c (6f1fe3305a2be0a1395569b2ea5f56a93e491ae0) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1982, 1986 The Regents of the University of California. 5 * Copyright (c) 1989, 1990 William Jolitz 6 * Copyright (c) 1994 John Dyson 7 * All rights reserved. 8 * --- 331 unchanged lines hidden (view full) --- 340 busdma_swi(); 341} 342 343void 344cpu_exit(struct thread *td) 345{ 346} 347 | 1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1982, 1986 The Regents of the University of California. 5 * Copyright (c) 1989, 1990 William Jolitz 6 * Copyright (c) 1994 John Dyson 7 * All rights reserved. 8 * --- 331 unchanged lines hidden (view full) --- 340 busdma_swi(); 341} 342 343void 344cpu_exit(struct thread *td) 345{ 346} 347 |
348bool 349cpu_exec_vmspace_reuse(struct proc *p __unused, vm_map_t map __unused) 350{ 351 352 return (true); 353} 354 |
|