Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch s/cpu_fork/cpu_lwp_fork/ in comment
details: https://anonhg.NetBSD.org/src/rev/ca619cea78fd
branches: trunk
changeset: 752403:ca619cea78fd
user: skrll <skrll%NetBSD.org@localhost>
date: Thu Feb 25 07:21:19 2010 +0000
description:
s/cpu_fork/cpu_lwp_fork/ in comment
diffstat:
sys/arch/powerpc/ibm4xx/pmap.c | 6 +++---
sys/arch/powerpc/oea/pmap.c | 6 +++---
sys/arch/sparc/sparc/syscall.c | 6 +++---
sys/arch/sun2/sun2/locore.s | 4 ++--
sys/arch/sun3/sun3x/locore.s | 4 ++--
5 files changed, 13 insertions(+), 13 deletions(-)
diffs (117 lines):
diff -r 116ff3e2cb7d -r ca619cea78fd sys/arch/powerpc/ibm4xx/pmap.c
--- a/sys/arch/powerpc/ibm4xx/pmap.c Thu Feb 25 07:14:48 2010 +0000
+++ b/sys/arch/powerpc/ibm4xx/pmap.c Thu Feb 25 07:21:19 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.60 2009/11/21 17:40:29 rmind Exp $ */
+/* $NetBSD: pmap.c,v 1.61 2010/02/25 07:21:19 skrll Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -67,7 +67,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.60 2009/11/21 17:40:29 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.61 2010/02/25 07:21:19 skrll Exp $");
#include <sys/param.h>
#include <sys/malloc.h>
@@ -1129,7 +1129,7 @@
pmap_t pmap = l->l_proc->p_vmspace->vm_map.pmap;
/*
- * XXX Normally performed in cpu_fork().
+ * XXX Normally performed in cpu_lwp_fork().
*/
printf("pmap_activate(%p), pmap=%p\n",l,pmap);
pcb->pcb_pm = pmap;
diff -r 116ff3e2cb7d -r ca619cea78fd sys/arch/powerpc/oea/pmap.c
--- a/sys/arch/powerpc/oea/pmap.c Thu Feb 25 07:14:48 2010 +0000
+++ b/sys/arch/powerpc/oea/pmap.c Thu Feb 25 07:21:19 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.69 2009/11/21 17:40:29 rmind Exp $ */
+/* $NetBSD: pmap.c,v 1.70 2010/02/25 07:21:19 skrll Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -63,7 +63,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.69 2009/11/21 17:40:29 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.70 2010/02/25 07:21:19 skrll Exp $");
#define PMAP_NOOPNAMES
@@ -2363,7 +2363,7 @@
("pmap_activate: lwp %p (curlwp %p)\n", l, curlwp));
/*
- * XXX Normally performed in cpu_fork().
+ * XXX Normally performed in cpu_lwp_fork().
*/
pcb->pcb_pm = pmap;
diff -r 116ff3e2cb7d -r ca619cea78fd sys/arch/sparc/sparc/syscall.c
--- a/sys/arch/sparc/sparc/syscall.c Thu Feb 25 07:14:48 2010 +0000
+++ b/sys/arch/sparc/sparc/syscall.c Thu Feb 25 07:21:19 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: syscall.c,v 1.21 2008/10/21 12:16:59 ad Exp $ */
+/* $NetBSD: syscall.c,v 1.22 2010/02/25 07:21:20 skrll Exp $ */
/*
* Copyright (c) 1996
@@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.21 2008/10/21 12:16:59 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscall.c,v 1.22 2010/02/25 07:21:20 skrll Exp $");
#include "opt_sparc_arch.h"
#include "opt_multiprocessor.h"
@@ -381,7 +381,7 @@
struct lwp *l = arg;
/*
- * Return values in the frame set by cpu_fork().
+ * Return values in the frame set by cpu_lwp_fork().
*/
userret(l, l->l_md.md_tf->tf_pc, 0);
ktrsysret((l->l_proc->p_lflag & PL_PPWAIT) ? SYS_vfork : SYS_fork,
diff -r 116ff3e2cb7d -r ca619cea78fd sys/arch/sun2/sun2/locore.s
--- a/sys/arch/sun2/sun2/locore.s Thu Feb 25 07:14:48 2010 +0000
+++ b/sys/arch/sun2/sun2/locore.s Thu Feb 25 07:21:19 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.22 2009/12/10 05:10:04 rmind Exp $ */
+/* $NetBSD: locore.s,v 1.23 2010/02/25 07:21:20 skrll Exp $ */
/*
* Copyright (c) 1980, 1990, 1993
@@ -167,7 +167,7 @@
| is finished, to avoid spurrious interrupts.
/*
- * Create a fake exception frame so that cpu_fork() can copy it.
+ * Create a fake exception frame so that cpu_lwp_fork() can copy it.
* main() nevers returns; we exit to user mode from a forked process
* later on.
*/
diff -r 116ff3e2cb7d -r ca619cea78fd sys/arch/sun3/sun3x/locore.s
--- a/sys/arch/sun3/sun3x/locore.s Thu Feb 25 07:14:48 2010 +0000
+++ b/sys/arch/sun3/sun3x/locore.s Thu Feb 25 07:21:19 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.59 2009/12/10 05:10:04 rmind Exp $ */
+/* $NetBSD: locore.s,v 1.60 2010/02/25 07:21:20 skrll Exp $ */
/*
* Copyright (c) 1980, 1990, 1993
@@ -179,7 +179,7 @@
| is finished, to avoid spurrious interrupts.
/*
- * Create a fake exception frame so that cpu_fork() can copy it.
+ * Create a fake exception frame so that cpu_lwp_fork() can copy it.
* main() nevers returns; we exit to user mode from a forked process
* later on.
*/
Home |
Main Index |
Thread Index |
Old Index